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

我有一个类似于以下的类:

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.所以删除对象,它会工作..

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...