Difference between static,final,static final? Questions on string and arrays. Questions on Basic sql,css,html.
Anonym
Static and final both are the keywords used in Java. The static member can be accessed before the class object is created. Final has a different effect when applied to class, methods, and variables. The main difference between a static and final keyword is that::::: static is keyword is used to define the class member that can be used independently of any object of that class. The Final keyword is used to declare, a constant variable, a method which can not be overridden and a class that can not be inherited.