+ 1
What does static in a method mean ??
3 Antworten
+ 14
static variables and methods belong to the class instead of a specific instance.
+ 14
static methods can be accessed without creating an instance of it's class. You can call it by mentioning it's class name(ClassName.method())
0
static mean that the method ist static