0
What is the importance of static in our java program ?
1 Odpowiedź
+ 3
in java,js static makes a variable/property of a class usable without creating an object of that class.
You can just say::
int a=Class.Property
rather than :
Class b=new Class();
int a=b.Property