Private member variables in a superclass are not accessible to subclasses - this is a fundamental principle of encapsulation in object-oriented programming. Only the superclass itself can access its private members. Subclasses can only access public, protected, and package-private (if in same package) members.