- 类常量
类常量
Class constants
类常量
A constant has a name starting with an uppercase character.
常量的名称以大写字母开头。
It should be assigned a value at most once.
它应该最多赋值一次。
In the current implementation of ruby, reassignment of a constant generates a warning but not an error (the non-ANSI version of eval.rb does not report the warning):
在Ruby的当前实现中,重新给一个常量赋值将产生一个警告,而不是一个错误(非ansi版本的eval.rb不报告警告):
ruby>fluid=3030ruby>fluid=3131ruby>Solid=3232ruby>Solid=33(eval):1: warning: already initialized constant Solid33
Constants may be defined within classes, but unlike instance variables, they are accessible outside the class.
常量可能在类中被定义,但是不同于实例变量,它们可以在类外部被访问。
ruby> class ConstClass| C1=101| C2=102| C3=103| def show| puts "#{C1} #{C2} #{C3}"| end| endnilruby> C1ERR: (eval):1: uninitialized constant C1ruby> ConstClass::C1101ruby> ConstClass.new.show101 102 103nil
Constants can also be defined in modules.
常量同样可以在模块中被定义。
ruby> module ConstModule| C1=101| C2=102| C3=103| def showConstants| puts "#{C1} #{C2} #{C3}"| end| endnilruby> C1ERR: (eval):1: uninitialized constant C1ruby> include ConstModuleObjectruby> C1101ruby> showConstants101 102 103nilruby> C1=99 # 这不是一个好主意99ruby> C199ruby> ConstModule::C1101ruby> ConstModule::C1=99 # 更早的版本中不允许这样做(eval):1: warning: already initialized constant C199ruby> ConstModule::C1 # "enough rope to shoot yourself in the foot"99
上一章 局部变量
下一章 异常处理:rescue
