我为技术绘图解决方案开发课程。我必须使用几何图元。前任:
# all specifications are left, bottom and width, height
class Circle
# +--- this is for my later question
# v
def initialize(x,y,w,h=w) # left, bottom and w=x+2*radius
...
end
end
# the Ellipse needs 4 specifications (no rotation here)
class Ellipse
def initialize(x,y,w,h) # left, bottom and w=2*a, h=2*b
...
end
end
如果有人会使用类似的东西
primitive=Cricle.new(10,10,20,30) # note different width and height
是否有可能返回 a Ellipse
(有点像:'对你接受的东西保持自由......' Jon Postel 的稳健性原则)?
我认为这include Ellipse
应该可以解决问题,因为 Circle 和 Ellibse 或多或少是相等的,所以我没有尝试过,但是class.name
如果我这样做会改变吗?(在 Ruby 中)会发生什么?