Member
A member of a class can be a method or a field.
Related concepts: MethodFieldClassObject
Closest Wikipedia entry: Class (computer programming) — In object-oriented programming, a class defines the shared aspects of objects created from the class. The capabilities of a class differ between programming languages, but generally the shared aspects consist of state (variables) and behavior (methods) that are each either associated with a particular object or with all objects of that class. Object state can differ between each instance of the class whereas the class state is shared by all of them.
Misconceptions about Member8 documented Misconceptions
Check YourselfCannotChainMemberAccesses
Member accesses cannot be chained togetherCannotChainMemberToConstructor
Method calls or field accesses cannot be chained to a constructor invocationPrivateAccessibleInSubclass
Private members of a superclass are accessible from a subclassPrivateFromOtherInstance
An object cannot access private members of other objects of the same classPrivateFromStatic
Static methods cannot access private members of instances of same classRightToLeftChaining
Chained accesses are invoked from right to left