0

What is the importance of static in our java program ?

11th May 2018, 7:42 PM
Sarthak Vishwakarma
Sarthak Vishwakarma - avatar
1 Answer
+ 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
11th May 2018, 8:33 PM
᠌᠌Code X
᠌᠌Code X - avatar