当前位置 : 主页 > 编程语言 > ruby >

Ruby:访问类的常量,例如类

来源:互联网 收集:自由互联 发布时间:2021-06-23
我有一个类似于以下的类: class Foo MY_CONST = "hello" ANOTHER_CONST = "world" def self.get_my_const Object.const_get("ANOTHER_CONST") endendclass Bar Foo def do_something avar = Foo.get_my_const # errors here endend 获取const_
我有一个类似于以下的类:

class Foo
  MY_CONST = "hello"
  ANOTHER_CONST = "world"

  def self.get_my_const
    Object.const_get("ANOTHER_CONST")
  end
end

class Bar < Foo
  def do_something
    avar = Foo.get_my_const # errors here
  end
end

获取const_get未初始化的常量ANOTHER_CONST(NameError)

假设我只是在Ruby范围内做一些愚蠢的事情.我正在我正在测试此代码的机器上使用Ruby 1.9.3p0.

工作中:

class Foo
  MY_CONST = "hello"
  ANOTHER_CONST = "world"

  def self.get_my_const
    const_get("ANOTHER_CONST")
  end
end

class Bar < Foo
  def do_something
    avar = Foo.get_my_const
  end
end

Bar.new.do_something # => "world"

你的下面部分不正确:

def self.get_my_const
    Object.const_get("ANOTHER_CONST")
end

在get_my_const方法中,self是Foo.所以删除对象,它会工作..

网友评论