在类方法中获取属性的值

发布于 2024-11-27 14:14:26 字数 353 浏览 0 评论 0原文

我有一个类方法,我想在该类方法中访问属性的值,

class Run

  attr_accessor :line

  def self.output(options={})
    station_no = options[:station]
    title = options[:title]
    line = self.line
    station = line.stations[station_no-1]
  end
end

我想访问 line 属性的值,在类方法中我无法使用 < 访问属性的值代码> self.line 。所以请建议我如何访问。

i have a class method where i want to access the value of an attribute

class Run

  attr_accessor :line

  def self.output(options={})
    station_no = options[:station]
    title = options[:title]
    line = self.line
    station = line.stations[station_no-1]
  end
end

within this class method i want to access value of line attribute and within class method i can't access the value of an attribute using self.line. So please suggest me how i can access.

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

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

发布评论

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

评论(1

灯角 2024-12-04 14:14:26

类方法在类上下文中执行,line是实例方法,您不能直接从self.output访问它。

您真的想从类方法访问实例属性吗?也许您需要的是类属性。如果是这样,您可以像这样声明它:

class Run
  class << self
    attr_accessor :line
  end
end

,并且能够在类方法中获取它的值。

如果您确实需要从类方法访问实例属性 - 将该实例作为参数传递给方法并调用它的访问器。

Class method is executed in class context and line is instance method, you can't directly access it from self.output.

Do you really want to access instance attribute from class method? Maybe what you need is class attribute. If so, you can declare it like this:

class Run
  class << self
    attr_accessor :line
  end
end

, and will be able to get it's value within class method.

If you do need to access instance attribute from class method — pass that instance as argument to method and call accessor on it.

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