Ruby类的初始化(构造函数)是私有方法还是公共方法?

发布于 2024-12-25 16:21:55 字数 35 浏览 1 评论 0原文

ruby 中的初始化方法(构造函数)是私有的还是公共的?

Is initialize method (constructor) private or public in ruby?

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

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

发布评论

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

评论(2

戒ㄋ 2025-01-01 16:21:55

让我们看看:

class Test
  def initialize; end
end

p Test.new.private_methods.sort.include?(:initialize)

这会打印 true,因此 initialize 是一个私有方法。这是有道理的,只有在创建对象时,它才会被 new 类方法调用。如果我们愿意,我们可以这样做:

class Test
  def initialize
    @counter = 0
  end

  def reset!
    initialize
  end
end

但是,如果它不仅仅执行简单的变量初始化,那么滥用这样的构造函数可能会导致问题。

Let's see:

class Test
  def initialize; end
end

p Test.new.private_methods.sort.include?(:initialize)

This prints true, so initialize is a private method. This makes sense, it is only called by the new class method if the object is created. If we want, we can do something like this:

class Test
  def initialize
    @counter = 0
  end

  def reset!
    initialize
  end
end

Misusing the constructor like this could however lead to problems if it does more than simple variable initialization.

随梦而飞# 2025-01-01 16:21:55

类中的 initialize 方法自动变为 Private。

您可以使用以下方法检查它:

puts ClassName.private_methods.sort

The initialize method in a class automatically becomes Private.

You can check it using:

puts ClassName.private_methods.sort
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文