Member
A member of a class can be a method or a field.
Related concepts: MethodFieldClassObject
Closest Wikipedia entry: Class (computer programming)
Misconceptions about Member10 documented Misconceptions
Check YourselfCannotChainMemberAccesses — Java
Member accesses cannot be chained togetherCannotChainMemberToConstructor — Java
Method calls or field accesses cannot be chained to a constructor invocationNestedPackages — Java
Packages can contain other packages which have access to members of the containing packagePrivateAccessibleInSubclass — Java
Private members of a superclass are accessible from a subclassPrivateFromOtherInstance — Java
An object cannot access private members of other objects of the same classPrivateFromStatic — Java
Static methods cannot access private members of instances of same classRightToLeftChaining — Java
Chained accesses are invoked from right to leftAccessingInexistentPropertyError — JavaScript
Accessing a non existent property on an object produces an errorCannotChainAttributeAccesses — Python
Attribute accesses cannot be chained togetherCannotChainAttributeToObjectInstantiation — Python
Method calls, and attribute accesses in general, cannot be chained to a constructor invocation.