java final keyword

Java Made Simple: What is final keyword with Example?

Java comes with a final keyword that can be applied to variables, classes and methods and in each place when applied gives different meaning. A final variable cannot be reassigned. A final method cannot be overridden. A final class cannot be extended. Eventhough, final keyword works differently, one common purpose(functionality) we can derive is something …

Java Made Simple: What is final keyword with Example? Read More »

Java Made Clear: Difference between static and final Keywords

static vs final java, both are known access modifiers in Java doing different functionalities (used for different jobs). static: static keyword can be applied to instance variables and methods but not to classes. When applied, variables and methods can be called without the help of an object. When a method or variable is called without …

Java Made Clear: Difference between static and final Keywords Read More »