0
What is the public static void
2 Respostas
+ 3
Public - the method, variable or class is accessible to anyone
Static - the method or variable belongs to the class, so any changes that happen to it are consistent in the class
void - means the method returns nothing
0
Thanks