代码注释¶ ↑
Ruby 有两种类型的注释:内联注释和块注释。
内联注释以 #
字符开头,一直持续到该行的末尾
# On a separate line class Foo # or at the end of the line # can be indented def bar end end
块注释以 =begin
开头,以 =end
结尾。每个注释都应从单独的一行开始。
=begin This is commented out =end class Foo end =begin some_tag this works, too =end
=begin
和 =end
不能缩进,因此这是一个语法错误
class Foo =begin Will not work =end end
魔术注释¶ ↑
虽然注释通常会被 Ruby 忽略,但特殊的“魔术注释”包含影响代码解释方式的指令。
顶级魔术注释必须出现在文件的第一部分注释中。
注意:魔术注释只影响它们出现的那个文件;其他文件不受影响。
# frozen_string_literal: true var = 'hello' var.frozen? # => true
备用语法¶ ↑
魔术注释可能包含一个指令(如上例所示)。或者,如果多个指令用“;”分隔并用“-*-”包裹,则它们可以出现在同一行上(参见 Emacs 的 文件变量)。
# emacs-compatible; -*- coding: big5; mode: ruby; frozen_string_literal: true -*- p 'hello'.frozen? # => true p 'hello'.encoding # => #<Encoding:Big5>
encoding
指令¶ ↑
指示应将哪种字符串编码用于字符串文字、正则表达式文字和 __ENCODING__
# encoding: big5 ''.encoding # => #<Encoding:Big5>
默认编码为 UTF-8。
顶级魔术注释必须从第一行开始,或者如果第一行看起来像 #! shebang line
,则从第二行开始。
可以使用“coding”一词代替“encoding”。
frozen_string_literal
指令¶ ↑
指示应在解析时一次分配字符串文字并冻结它们。
# frozen_string_literal: true 3.times do p 'hello'.object_id # => prints same number end p 'world'.frozen? # => true
默认值为 false;可以使用 --enable=frozen-string-literal
更改此值。如果没有该指令,或使用 # frozen_string_literal: false
,上面的示例将打印 3 个不同的数字和“false”。
从 Ruby 3.0 开始,动态字符串文字不会被冻结或重复使用
# frozen_string_literal: true p "Addition: #{2 + 2}".frozen? # => false
它必须出现在文件的第一部分注释中。
warn_indent
指令¶ ↑
此指令可以开启对它后面的语句的错误缩进检测
def foo end # => no warning # warn_indent: true def bar end # => warning: mismatched indentations at 'end' with 'def' at 6
另一种显示这些警告的方法是使用警告运行 Ruby(ruby -w
)。使用指令将此设置设为 false 将阻止显示这些警告。
shareable_constant_value
指令¶ ↑
注意:此指令在 Ruby 3.0 中是实验性的,并且在未来的版本中可能会发生更改。
此特殊指令有助于创建仅保存不可变对象或 Ractor 可共享 常量的常量。
该指令可以指定对分配给常量的值的特殊处理
-
none
:(默认) -
literal
: 文字被隐式冻结,其他文字必须是 Ractor 可共享的 -
experimental_everything
:所有内容均可共享 -
experimental_copy
:深度复制并使其可共享
模式 none
(默认值)¶ ↑
此模式中没有特殊处理(如 Ruby 2.x 中):没有自动冻结和检查。
一直以来,深度冻结常量都是一个好主意;Ractor
使之成为一个更好的主意,因为只有主 ractor 可以访问不可共享的常量
# shareable_constant_value: none A = {foo: []} A.frozen? # => false Ractor.new { puts A } # => can not access non-shareable objects by non-main Ractor.
模式 literal
¶ ↑
在“literal”模式中,分配给文字的常量将被深度冻结
# shareable_constant_value: literal X = [{foo: []}] # => same as [{foo: [].freeze}.freeze].freeze
其他值必须可共享
# shareable_constant_value: literal X = Object.new # => cannot assign unshareable object to X
请注意,只有直接分配给常量或在这些文字中递归保存的文字才会被冻结
# shareable_constant_value: literal var = [{foo: []}] var.frozen? # => false (assignment was made to local variable) X = var # => cannot assign unshareable object to X X = Set[1, 2, {foo: []}].freeze # => cannot assign unshareable object to X # (`Set[...]` is not a literal and # `{foo: []}` is an argument to `Set.[]`)
方法 Module#const_set
不会受到影响。
模式 experimental_everything
¶ ↑
在此模式中,分配给常量的所有值均可共享。
# shareable_constant_value: experimental_everything FOO = Set[1, 2, {foo: []}] # same as FOO = Ractor.make_sharable(...) # OR same as `FOO = Set[1, 2, {foo: [].freeze}.freeze].freeze` var = [{foo: []}] var.frozen? # => false (assignment was made to local variable) X = var # => calls `Ractor.make_shareable(var)` var.frozen? # => true
此模式为“实验性”,因为它可能容易出错,例如深度冻结外部资源的常量,这可能会导致错误
# shareable_constant_value: experimental_everything FOO = SomeGem::Something::FOO # => deep freezes the gem's constant!
这将在 Ruby 3.1 之前重新审视,以允许“everything”或删除此模式。
方法 Module#const_set
不会受到影响。
模式 experimental_copy
¶ ↑
在此模式中,分配给常量的所有值都将被深度复制并使其可共享。它比 experimental_everything
更安全。
# shareable_constant_value: experimental_copy var = [{foo: []}] var.frozen? # => false (assignment was made to local variable) X = var # => calls `Ractor.make_shareable(var, copy: true)` var.frozen? # => false Ractor.shareable?(X) #=> true var.object_id == X.object_id #=> false
此模式为“实验性”,尚未得到彻底讨论。这将在 Ruby 3.1 之前重新审视,以允许“copy”或删除此模式。
方法 Module#const_set
不会受到影响。
范围¶ ↑
此指令可以在同一文件中多次使用
# shareable_constant_value: none A = {foo: []} A.frozen? # => false Ractor.new { puts A } # => can not access non-shareable objects by non-main Ractor. # shareable_constant_value: literal B = {foo: []} B.frozen? # => true B[:foo].frozen? # => true C = [Object.new] # => cannot assign unshareable object to C (Ractor::IsolationError) D = [Object.new.freeze] D.frozen? # => true # shareable_constant_value: experimental_everything E = Set[1, 2, Object.new] E.frozen? # => true E.all(&:frozen?) # => true
此指令仅影响后续常量,并且仅针对当前范围
module Mod # shareable_constant_value: literal A = [1, 2, 3] module Sub B = [4, 5] end end C = [4, 5] module Mod D = [6] end p Mod::A.frozen?, Mod::Sub::B.frozen? # => true, true p C.frozen?, Mod::D.frozen? # => false, false