+ 1
Java
what does mean "public class"
4 RĂ©ponses
+ 1
It's how you declare a class in java. To organize bigger programs you'll probably use multiple classes.
Usage:
public class ClassName{
//whatever code you want, probably a constructor, variables and functions
}
0
yes but "class", is it a keywords ?
I'm sorry, i'm a newbie
0
Yes, it tells the program that what comes next is just a normal class.
0
thank you so much