+ 2
Can any body explain me about this java line. Word by word
Public static void main
1 Antwort
+ 3
public -> can be accessed outside the class
static -> belongs to the class, not the instance of the class
void -> it doesn't return anything
main -> that's just the name of the method