Jump to content
Wikipedia The Free Encyclopedia

Instance variable

From Wikipedia, the free encyclopedia
Member variable of a class that all its objects possess a copy of
Not to be confused with class variable.
This article has multiple issues. Please help improve it or discuss these issues on the talk page . (Learn how and when to remove these messages)
This article possibly contains original research . Please improve it by verifying the claims made and adding inline citations. Statements consisting only of original research should be removed. (September 2013) (Learn how and when to remove this message)
This article's tone or style may not reflect the encyclopedic tone used on Wikipedia. See Wikipedia's guide to writing better articles for suggestions. (September 2013) (Learn how and when to remove this message)
(Learn how and when to remove this message)

In class-based, object-oriented programming, an instance variable is a variable defined in a class (i.e., a member variable), for which each instantiated object of the class has a separate copy, or instance.[1] [2] An instance variable has similarities with a class variable,[3] but is non-static. An instance variable is a variable which is declared in a class but outside of constructors, methods, or blocks. Instance variables are created when an object is instantiated, and are accessible to all the constructors, methods, or blocks in the class. Access modifiers can be given to the instance variable.

An instance variable is not a class variable,[4] although there are similarities. Both are a type of class attribute (or class property, field, or data member). While an instance variable's value may differ between instances of a class, a class variable can only have one value at any one time, shared between all instances. The same dichotomy between instance and class members applies to methods ("member functions") as well.

Each instance variable lives in memory for the lifetime of the object it is owned by.[5]

Instance variables are properties of that object. All instances of a class have their own copies of instance variables, even if the value is the same from one object to another. One class instance can change values of its instance variables without affecting all other instances. A class may have both instance variables and class variables.

Instance variables can be used by all instance methods of an object, but may not be used by class methods. An instance variable may also be changed directly, provided access restrictions are set.[6]

Examples

[edit ]

C++

[edit ]
structRequest{
staticintcount1;// variable name is not important
intnumber;
Request(){
number=count1;// modifies the instance variable "this->number"
++count1;// modifies the class variable "Request::count1"
}
};
intRequest::count1=0;

In this C++ example, the instance variable Request::number is a copy of the class variable Request::count1 where each instance constructed is assigned a sequential value of count1 before it is incremented. Since number is an instance variable, each Request object contains its own distinct value; in contrast, there is only one object Request::count1 available to all class instances with the same value.

Java

[edit ]
//Example.java
class Example{
publicintx=0;

publicvoidsetX(intnewValue){
this.x=newValue;
}
}
//Main.java
class Main{
publicstaticvoidmain(String[]args){
Exampleexample1=newExample();
Exampleexample2=newExample();

//We can set the value of x by itself, as the variable is public
example1.x=10;

assertexample1.x==10;
assertexample2.x==0;

//As setX is an instance method, it can also access the variable
example2.setX(-10);

assertexample1.x==10;
assertexample2.x==-10;
}
}

In this Java example, we can see how instance variables can be modified in one instance without affecting another.

Python

[edit ]
classDog:
 def__init__(self, breed):
 self.breed = breed # instance variable
# dog_1 is an object
# which is also an instance of the Dog class
dog_1 = Dog("Border Collie")

In the above Python code, the instance variable is created when an argument is parsed into the instance, with the specification of the breed positional argument.

References

[edit ]
  1. ^ "Instance Variables in C++ Programming". Dremendo. Retrieved 2024年03月08日.
  2. ^ "Java Variables". GeeksforGeeks. 2017年02月06日. Retrieved 2024年03月08日.
  3. ^ "The Java Tutorial, Variables". docs.oracle.com. Oracle. Archived from the original on 23 October 2014. Retrieved 23 October 2014.
  4. ^ "Difference between Instance Variable and Class Variable". GeeksforGeeks. 2021年04月26日. Retrieved 2024年03月08日.
  5. ^ "The Java Tutorials, Understanding Class Members". docs.oracle.com. Oracle. Archived from the original on 11 October 2014. Retrieved 23 October 2014.
  6. ^ Matuszek, David. "Static". cis.upenn.edu. University of Pennsylvania. Archived from the original on 23 October 2014. Retrieved 23 October 2014.


Stub icon

This computer-programming-related article is a stub. You can help Wikipedia by expanding it.

AltStyle によって変換されたページ (->オリジナル) /