Advertisements
Advertisements
प्रश्न
State any one difference between instance variable and class variable.
Differentiate between instance variable and class variable.
अंतर स्पष्ट करें
उत्तर १
- Each instance variable is created separately, but class variables are created once and shared by all class objects.
- Instance variables are defined without the static keyword, whereas class variables are declared with the static keyword in a class.
shaalaa.com
उत्तर २
S. No. | Instance variable | Class variable |
1. | Instance variables are defined without the 'static' keyword. |
Class variables are defined using the Keyword 'static'. |
2. | Instance variables are separate copies of an object. | A static variable (class variable) will be accessible as a singular shared instance for all class instances. |
shaalaa.com
Object as an Instance of a Class
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
संबंधित प्रश्न
State any one purpose of using the keyword this in Java programming.
Consider the following statement written in class Circle where pi is its data member.
static final double pi = 3.142;
Which of the following statements are valid for pi?
- It contains a common value for all objects class Circle.
- Its value is non-changeable.
- At a time two access modifiers, static and final, cannot be applied to a single data member pi.