gpt4 book ai didi

ruby - 悄悄改类?在 Ruby 中有可能吗

转载 作者:数据小太阳 更新时间:2023-10-29 08:38:46 25 4
gpt4 key购买 nike

我为技术绘图解决方案开发类。我必须使用几何图元。例如:

# 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 

是否有可能返回一个 Ellipse(有点像:'在你接受的东西上要自由......' Jon Postel 的健壮性原则)?

我认为只需 include Ellipse 就可以解决问题,因为 Circle 和 Ellibse 或多或少是相等的,我没有尝试过,但这会改变 class.name ,如果我这样做会发生什么(在 Ruby 中)?

最佳答案

是的,你可以(在 Circle 类中只需添加以下内容):

def self.new(x, y, w, h)
return Ellipse.new(x, y, w, h) if w != h
super
end

关键是,是的,正如您所说,这是非常糟糕的做法。在这种情况下,您可以更好地组织事情,而且您通常永远不应该写出这样的 hack。这是一个例子:

class Ellipse
def initialize(x, y, w, h = w)
# (x, y) is the origin point
# w = width, h = height
# ...
end
end

class Circle < Ellipse
def initialize(x, y, d)
# (x, y) is the origin point
# d = diameter
# ...
super x, y, d, d
end
end

事实上,圆是椭圆的特例。通过执行上述操作,您可以通过在 Circle#initialize 方法中专门化 Ellipse 的构造函数来明确这一点。

关于ruby - 悄悄改类?在 Ruby 中有可能吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18046946/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com