I can't understand this code (String[ ] args) { System.out.println("Hello World"); | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 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 Resposta
+ 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