谁能告诉我它有什么问题?
解决方法
话虽如此,the wikipedia article详细说明了为什么有些人认为这很糟糕,使用您的确切示例:
@H_502_2@s = Square.new(100) r = Rectangle.new(100,100) s.width = 50 r.width = 50 puts s.height puts r.heightA typical example that violates LSP is a Square class that derives from a Rectangle class,assuming getter and setter methods exist for both width and height.
The Square class always assumes that the width is equal with the height. If a Square object is used in a context where a Rectangle is expected,unexpected behavior may occur because the dimensions of a Square cannot (or rather should not) be modified independently.
This problem cannot be easily fixed: if we can modify the setter methods in the Square class so that they preserve the Square invariant (i.e.,keep the dimensions equal),then these methods will weaken (violate) the postconditions for the Rectangle setters,which state that dimensions can be modified independently.
输出将在左侧为50,在右侧为100.
但是,在我看来,这是文章的重点:
Violations of LSP,like this one,may or may not be a problem in practice,depending on the postconditions or invariants that are actually expected by the code that uses classes violating LSP.
换句话说,如果使用类的代码理解行为,则没有问题.
底线,正方形是矩形的适当子集,对于矩形的宽松定义:-)