StackOverflow 文档 Ruby Language 教程 常量 定义一个常量 定义一个常量 Created: November-22, 2018 MY_CONSTANT = "Hello, world" # constant Constant = 'This is also constant' # constant my_variable = "Hello, venus" # not constatn 常量名以大写字母开头。以大写字母开头的所有内容在 Ruby 中都被视为 constant。所以 class 和 module 也是不变的。最佳做法是使用全部大写字母来声明常量。 修改常量常量