A perfomance da Igreja ou a Igreja da performance?

Fico realmente feliz em ver que as igrejas tem voltado sua visão para a modernidade. Os descendentes dos mídianitas, que são os fotógrafos, social media e a galera que trabalha no som, passagem de…

Smartphone

独家优惠奖金 100% 高达 1 BTC + 180 免费旋转




Numbers Matter

Chapter 10 of Head Frist Java Book

Static is a non-access modifier in Java. It can be applied in blocks, variables, methods, nested classes and so on. To create a static member precede its declaration with the keyword static. When a member is declared static, it can be accessed before any objects of its class are created, and without reference to any object.

For example,

Above Class not create a object yet. but they can access all static one without objects.

Java final keyword is a non-access specifier that is used to restrict a class, variable, and method. If we initialize a variable with the final keyword, then we cannot modify its value. If we declare a method as final, then it cannot be overridden by any subclasses. And, if we declare a class as final, we restrict the other classes to inherit or extend it. In other words, the final classes can not be inherited by other classes.

Once we declare a variable with the final keyword, we can’t change its value again. If we try to change the value of the final variable, then we will get a compilation error. Generally, we use final keyword for constant whose not changed.

We can declare Java methods as Final Method by adding the Final keyword before the method name. The Method with Final Keyword cannot be overridden in the subclasses. The purpose of the Final Method is to declare methods of how’s definition can not be changed by a child or subclass that extends it.

We can also declare a class with a final keyword in Java. When we declare a class as final, then we restrict other classes to inherit or extend it.

Add a comment

Related posts:

Does Multiverse Really exist???

Over more than 2 trillion galaxies and hell lot of a planets are there in a universe that we say is our observing universe. We know that there are a lot of galaxies, a lot of planets but where we…

Yin Yang Energy

During the daytime hours, when the sun is beaming down on Earth, I stand still and embrace its potent energy. It elevates my vibration and gives me so much life. The energy that I harness from the…