I can't understand this code (String[ ] args) { System.out.println("Hello World"); | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

I can't understand this code (String[ ] args) { System.out.println("Hello World");

please explain every keywords

3rd Nov 2017, 11:53 AM
Vedant Patel
Vedant Patel - avatar
1 ответ
+ 5
Careful. println is not static. Instead, you are accessing the non-static method with the static Object 'out'. 'out' is of type PrintStream.
3rd Nov 2017, 2:48 PM
Rrestoring faith
Rrestoring faith - avatar