未定义方法“new”对于 Fixnum:Class (NoMethodError)

发布于 2024-12-04 21:26:05 字数 253 浏览 2 评论 0原文

    class Fixnum
      def repeat
        for i in 1..self.to_i
          yield
        end
      end
    end

    z = Fixnum.new 4

上面的程序为 Fixnum:Class (NoMethodError) 提供了新的未定义方法。为什么会这样呢?我刚刚尝试在另一个班级中使用它并且它有效。

谢谢!

    class Fixnum
      def repeat
        for i in 1..self.to_i
          yield
        end
      end
    end

    z = Fixnum.new 4

The program above is giving undefined method new for Fixnum:Class (NoMethodError). Why so? I just tried using it in another class and it works.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

就像说晚安 2024-12-11 21:26:06

在我看来,方法和错误没有关系,你为什么要做 z = Fixnum.new 4 ?

该方法应该像这样使用:

class Fixnum
  def repeat
    for i in 1..self.to_i
      yield
    end
  end
end

5.repeat{puts "hi"}
#or maybe?
z = 3
z.repeat{puts "bye"}

It looks to me that the method and the error have no relation, why are you doing z = Fixnum.new 4?

The method should be used like:

class Fixnum
  def repeat
    for i in 1..self.to_i
      yield
    end
  end
end

5.repeat{puts "hi"}
#or maybe?
z = 3
z.repeat{puts "bye"}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文