Difference between revisions of "Object (computer science)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(etc)
 
Line 1: Line 1:
 
In [[computer science]], an '''object''' is a location in memory having a value and possibly referenced by an identifier.
 
In [[computer science]], an '''object''' is a location in memory having a value and possibly referenced by an identifier.
  
An object can be a variable, a data structure, or a function.
+
An object can be a [[variable]], a [[data structure]], or a [[function]].
  
In the class-based object-oriented programming paradigm, "object" refers to a particular instance of a class where the object can be a combination of variables, functions, and data structures.
+
In the [[class-based]] [[object-oriented programming]] paradigm, "object" refers to a particular instance of a class where the object can be a combination of variables, functions, and data structures.
  
 
In relational database management, an object can be a table or column, or an association between data and a database entity (such as relating a person's age to a specific person).
 
In relational database management, an object can be a table or column, or an association between data and a database entity (such as relating a person's age to a specific person).
 +
 +
== See also ==
 +
 +
* [[Ccomputer science]]
 +
* [[Object (mathematics}]]
  
 
== External links ==
 
== External links ==
  
 
* [https://en.wikipedia.org/wiki/Object_(computer_science) Object (computer science)] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Object_(computer_science) Object (computer science)] @ Wikipedia

Revision as of 18:26, 28 August 2015

In computer science, an object is a location in memory having a value and possibly referenced by an identifier.

An object can be a variable, a data structure, or a function.

In the class-based object-oriented programming paradigm, "object" refers to a particular instance of a class where the object can be a combination of variables, functions, and data structures.

In relational database management, an object can be a table or column, or an association between data and a database entity (such as relating a person's age to a specific person).

See also

External links