singleton怎么读,singleton的音标和真人发音
英音  ['sɪŋɡltən]    
美音 [ˈsɪŋɡəltən]    
音节划分:single-ton

singleton是什么意思,singleton的意思是

n.一个,独身,单独

singleton 变化形式

复数: singletons
易混淆的单词: Singleton
星级词汇:

singleton的词源和记忆技巧

singleton 单身,单项物
single,单个的,单身的,-ton,人,衍生自 simpleton.

singleton 的用法和双语例句“点击”或“选中”例句中的单词,就可以看到词义解释

A singleton object works fine .
单体模式工作的很好。
So if you serialize one singleton twice , the two serialized objects take on separate identities .
所以如果两次序列化一个单例对象,这两个序列化得到的对象会持有两个不同的标识。
However , I think if used sparingly and with great care , the singleton pattern can benefit you greatly .
不过,如果保守小心使用单件模式,我想对你还是大有帮助的.
I prefer the view expressed by henry singleton , founder of teledyne technologies : " any idiot can cut costs . "
我更喜欢teledynetechnologies公司创始人亨利辛格尔顿(henrysingleton)说的一句话:“连傻子都能削减成本。”
On the first line , upper is now declared as an object , which is a singleton .
在第一行,upper被定义为一个object,也就是单体模式。
Instead , scala supports a singleton object construct to support those cases where exactly one instance of a type is needed .
相反,scala支持单例模式,可以应用于那些一种类型只有一个实例的情况。
Since an instance of a subclass is an instance of your superclass , you could find multiple instances of the singleton .
由于子类的实例也是单例类的实例,所以可能出现多个单例实例并存的情况。
In this situation , we intend to avoid the expense of grabbing the lock of the singleton class every time the method is called .
在此种解决方法中,我们试图避免在每次该方法被调用时由于对该单例类进行锁住而产生的开销。
In some implementations of creational design patterns in the factory family , the factory is a singleton structured to create an instance of another class .
在工厂模式家族的构建模式的一些实现方式中,工厂类被定义为以单例的方式去创建其他类的实例。
Likewise , with a singleton implemented as single instance , you leave open the possibility of altering the class to create more instances in the future .
同时,如果使用创建单实例的方法实现单例模式,单例类还具有创建多个实例的变通能力。