In "Design Patterns - Elements of Reusable Object-Oriented Software" in chapter 1 in Section 1.6 under "Putting Reuse Mechanism to Work" in the "Inheritance versus Composition" part, the author is talking about drawbacks of inheritance:
Second, and generally worse, parent classes often define at least part of their subclasses' physical representation.
(emphasis by me)
What does physical representation mean in this context? I was doing some searching and found this stackoverflow question where in the answer physical was defined as memory is allocated for the object.
Does this mean when using inheritance the memory allocation of the object that inherits is partially defined by the object's parent? If it does, what does that mean in other words? And why is this a disadvantage?