11件ヒット
[1-11件を表示]
(0.552秒)
トップページ > :Object#class > :to_regexp > :FALSE > :ruby 1.6 feature > :< > :const_defined? > :singleton
検索結果
先頭1件
-
Singleton (20.0)
-
Singleton パターンを提供するモジュールです。
...Singleton パターンを提供するモジュールです。
Mix-in により singleton パターンを提供します。
Singleton モジュールを include することにより、クラスは
高々ひとつのインスタンスしか持たないことが保証されます。
Singleton を M......e 'singleton'
class SomeSingletonClass
include Singleton
#....
end
a = SomeSingletonClass.instance
b = SomeSingletonClass.instance # a and b are same object
p [a,b] # => [#<SomeSingletonClass:0x0000562e6e18ddd0>, #<SomeSingletonClass:0x0000562e6e18ddd0>]
a = SomeSingletonClass.n......ew # => NoMethodError (private method `new' called for SomeSingletonClass:Class)...