Java Lesson 1, Intro
Uploader Comments (zaychenok)
All Comments (56)
-
Very nice Simple and easy way of teaching by this person I like
-
pusinggggg
-
Thank you so much! I've been trying to start doing Java ever since August! This tutorial helped so much!
-
@zaychenok Hey, can I use eclipse?
-
cant u just simply write, public void hello()
{
System... blah blah blah
}
?
-
thenx :-)
-
thank you sooo much for making this string of lessons. i've been wanting to learn Java for a couple years now.
-
Thanks for this. I'm starting Informatic Engineering but I didn't got jack from my programming introduction class
-
@cronnin you have to use the same name. The reason for this is that when you run the program the jvm(java virtual machine) uses the name of the class to access the method main() to begin execution
-
@cronnin you have to use the same name
can you tell me what is the definition of public, static and void?
gcsupernova 1 year ago
@gcsupernova public - others methods in other classes can call this method. static: the method exists independent of the class and class variables (you dont need an instance of the class to invoke the method). Void is the return type - what the method "gives back". void means that the method returns nothing in this case.
zaychenok 1 year ago 2