The funny thing is, I never programmed in it before, and from only seeing a few examples of code from my friends notebook a few days beforehand, I was able to program basic classes that do basic things.
I can't find a good tutorial online that teaches everything in Java, such from what explain what everything does, arrays, io, etc.
I can do stuff, but I don't understand what some stuff actually means..
Example.
public class Main {
public static void main(String args[])
{
System.out.println("Hello world.");
int Money = 0;
int Cost = 100;
System.out.println(Cost-Money);
AlarmClock M = new AlarmClock();
M.Snooze();
}
}
I understand you must put "public static void main(String args[])" on most classes, but what do they mean? And using just "public void Test();" is much like creating a proc.
Help please?
Also, with public void Test(); :
Public defines who can access it. In this case, anyone. If it's anything like C++'s access methods, then you can also have protected or private, which probably have a different definition in Java. Void is thge return type, in this case, nothing. Test is the function name, and everything in between the parenthesis is arguments, which are defined as
"Return-Type Var-Name".
Also, on Main, there's an extra word before the function name, "static"
Well, again if it's anything like C++, then it means that that function can be called without having an instance of the class that contains it.