Next member: member variable Up: member Previous member: inner class
|
instance member |
subject | fact | |
Kinds of instance member :
- instance method (13 kinds, 75 facts) - A method that executes in the context of a particular object; it has access to the instance variables of the given object, and can refer to the object itself using the 'this' keyword, Any method that is invoked with respect to an instance of a class
- instance variable (19 facts) (data member, field, object variable) - A data item present in all the instances of a class, normally used to implement associations and attributes, Any item of data that is associated with a particular object.