需要在我的类中编写比较点方法,称为 point 。红宝石
你好,我已经在 ruby 中写了这个点类,但是我需要一个与任何人比较的方法类,有什么想法从哪里开始吗?
class Point
attr_reader :x, :y
def initialize x,y
@x = x
@y = y
end
def addpoint(x,y) # used to add points
Point.new(@x+x, @y+y)
end
def to_s
x.to_s+" , "+y.to_s # used to change from object to strings
end
end
hi i have wrttien this points class in ruby but i need a compare method class to anybody any ideas where to start?
class Point
attr_reader :x, :y
def initialize x,y
@x = x
@y = y
end
def addpoint(x,y) # used to add points
Point.new(@x+x, @y+y)
end
def to_s
x.to_s+" , "+y.to_s # used to change from object to strings
end
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)