12件ヒット
[1-12件を表示]
(0.021秒)
検索結果
-
Module
# class _ variables(inherit = true) -> [Symbol] (18125.0) -
クラス/モジュールに定義されているクラス変数の名前の配列を返します。
...数を含みます。
//emlist[例][ruby]{
class One
@@var1 = 1
end
class Two < One
@@var2 = 2
end
One.class_variables # => [:@@var1]
Two.class_variables # => [:@@var2, :@@var1]
Two.class_variables(false) # => [:@@var2]
//}
@see Module.constants, Kernel.#local_variables, Ke...