Advertisements
Advertisements
Questions
State any one difference between instance variable and class variable.
Differentiate between instance variable and class variable.
Distinguish Between
Solution 1
- 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
Solution 2
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
Is there an error in this question or solution?
RELATED QUESTIONS
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.