+ 1
I can't understand this code (String[ ] args) { System.out.println("Hello World");
please explain every keywords
1 Answer
+ 5
Careful.
println is not static. Instead, you are accessing the non-static method with the static Object 'out'. 'out' is of type PrintStream.