需要在我的类中编写比较点方法,称为 point 。红宝石

发布于 2024-12-07 21:51:00 字数 333 浏览 1 评论 0原文

你好,我已经在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

将军与妓 2024-12-14 21:51:00
class Point
  def == p
     return false unless p.kind_of? Point
     x == p.x and y == p.y
  end
end
class Point
  def == p
     return false unless p.kind_of? Point
     x == p.x and y == p.y
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文