Need some help with JAVA coding.
So im new to this stuff and i really wanna go deep, because if you dont go deep and not understand what everything means, Its gonna get really though.
So i wondered :
What does it mean with Main(string[]args) how does it connect to system.out.Println? I know that Void means return, and im guessing that in this case the void is Main(string. Wich is the main ''mission'' (Method?) of the hello world program.
_______________________________________
public class MyProgram {
public static void main(String[] args) {
System.out.println(
"Hello world!");
}
}
_______________________________________
And can someone explain System.out? explain the class please. i know its all classes.
I would love to know how you know where to put these ''( and { all of those things like ; . Im so confused about that:S
So im new to this stuff and i really wanna go deep, because if you dont go deep and not understand what everything means, Its gonna get really though.
So i wondered :
What does it mean with Main(string[]args) how does it connect to system.out.Println? I know that Void means return, and im guessing that in this case the void is Main(string. Wich is the main ''mission'' (Method?) of the hello world program.
_______________________________________
public class MyProgram {
public static void main(String[] args) {
System.out.println(
"Hello world!");
}
}
_______________________________________
And can someone explain System.out? explain the class please. i know its all classes.
I would love to know how you know where to put these ''( and { all of those things like ; . Im so confused about that:S
