Ruby 1.9.3 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Moduleクラス > class_variables

instance method Module#class_variables

class_variables -> [Symbol][permalink][rdoc]

クラス/モジュールに定義されているクラス変数の名前の配列を返します。

スーパークラスやインクルードしているモジュールのクラス変数は含みません。

class One
  @@var1 = 1
end
class Two < One
  @@var2 = 2
end
One.class_variables   # => [:@@var1]
Two.class_variables   # => [:@@var2]

[SEE_ALSO] Module.constants, Kernel.#local_variables, Kernel.#global_variables, Object#instance_variables, Module#constants