typeof¶
typeof
表达式返回表达式的类型。
a = 1
b = typeof(a) # => Int32
它接受多个参数,结果是表达式类型的联合。
typeof(1, "a", 'a') # => (Int32 | String | Char)
它通常用在泛型代码中,利用编译器的类型推断功能。
hash = {} of Int32 => String
another_hash = typeof(hash).new # :: Hash(Int32, String)
由于 typeof
不会实际求值表达式,因此它可以在编译时使用,例如在这个例子中,它递归地从嵌套的泛型类型中形成联合类型。
class Array
def self.elem_type(typ)
if typ.is_a?(Array)
elem_type(typ.first)
else
typ
end
end
end
nest = [1, ["b", [:c, ['d']]]]
flat = Array(typeof(Array.elem_type(nest))).new
typeof(nest) # => Array(Int32 | Array(String | Array(Symbol | Array(Char))))
typeof(flat) # => Array(String | Int32 | Symbol | Char)
此表达式在 类型语法 中也有提供。