为什么在 Ruby 方法名称前添加 self?

发布于 2024-12-17 13:09:01 字数 171 浏览 0 评论 0原文

在查看一些 Ruby 代码时,我注意到在方法名称前面添加了 self. 声明的方法。例如:

def self.someMethod
  //...
end

在方法名称前添加 self. 会对方法产生什么影响?

While looking over some Ruby code I noticed methods declared with self. prepended to the method name. For example:

def self.someMethod
  //...
end

What does prepending self. to the method name change about the method?

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

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

发布评论

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

评论(2

宫墨修音 2024-12-24 13:09:01

def self.something 是一个类方法,调用方式为:

Class.some_method

def something 是一个实例方法,调用方式为:

class = Class.new
class.some_method

区别在于,一个是在类本身上调用,另一个是在类本身上调用在类的实例上。

要定义类方法,您还可以使用类名称,但这将使将来的重构变得更加困难,因为类名称可能会更改。

一些示例代码:

class Foo
  def self.a
    "a class method"
  end

  def b
    "an instance method"
  end

  def Foo.c
    "another class method"
  end
end

Foo.a # "a class method"
Foo.b # NoMethodError
Foo.c # "another class method"
bar = Foo.new 
bar.a # NoMethodError
bar.b # "an instance method"
bar.c # NoMethodError

def self.something is a class method, called with:

Class.some_method

def something is an instance method, called with:

class = Class.new
class.some_method

The difference is that one is called on the class itself, the other on an instance of the class.

To define a class method, you can also use the class name, however that will make things more difficult to refactor in the future as the class name may change.

Some sample code:

class Foo
  def self.a
    "a class method"
  end

  def b
    "an instance method"
  end

  def Foo.c
    "another class method"
  end
end

Foo.a # "a class method"
Foo.b # NoMethodError
Foo.c # "another class method"
bar = Foo.new 
bar.a # NoMethodError
bar.b # "an instance method"
bar.c # NoMethodError
内心荒芜 2024-12-24 13:09:01

自我。使其成为类方法,而不是实例方法。这与其他语言中的静态函数类似。

The self. causes it to become a class method, rather than an instance method. This is similar to static functions in other languages.

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