Definition of Instance variable

FOLDOC
instance variable
<programming> In object-oriented programming, one of the variables of a class template which may have a different value for each object of that class. Instance variables hold the state of an object.
(1998-01-16)

Search Dictionary:
Search Web Search Dictionary



Instance variable definition was found in categories: Computer & Internet(1)  Language, Idioms & Slang(1)  Encyclopedia(1)  

Instance variable Definition from Computer & Internet Dictionaries & Glossaries

Noman's Java(TM) Glossary
instance variable
Any item of data that is associated with a particular object. Each instance of a class has its own copy of the instance variables defined in the class. Also called a field .


Instance variable Definition from Language, Idioms & Slang Dictionaries & Glossaries

hEnglish - advanced version
instance variable

instance variable
in object-oriented programming, one of the variables of a class template which may have a different value for each object of that class. instance variables hold the state of an object.



Instance variable Definition from Encyclopedia Dictionaries & Glossaries

Wikipedia English - The Free Encyclopedia
Field (computer science)
In computer science, data that has several parts can be divided into fields. For example, a computer may represent today's date as three distinct fields: the day, the month and the year.

Programming languages usually have a record data type to represent composite data types as a series of fields. An array of boolean values can be represented as a bit field.

Relational databases arrange data as sets of database records, also called rows. Each record consists of several fields; the fields of all records form the columns.


See more at Wikipedia.org...