问题描述
我们如何以及在哪种情况下使用 Singletone 设计模式?
Singletone设计模式的优势是什么?
how and in which situation we can use Singletone design pattern?
what is the advantages of Singletone design pattern?
推荐答案
public class MySingleToneClass
{
private static readonly MySingleToneClass _instance = new MySingleToneClass();
private MySingleToneClass(){}
public static MySingleToneClass GetInstance()
{
return _instance;
}
}
关于SingleTone模式的一个重要注意事项是许多专家都认为SingleTone是反模式的。 SingleTone类背后的原因不是单元可测试,也不鼓励全局对象。与全局数据一样,全局对象会产生许多问题。
One important note regarding SingleTone pattern that is many experts are aggreed that SingleTone is anti-pattern. The reason behind that SingleTone class is not properly unit-testable and also they discourage global object. Like global data, global object create many problems.
class SingletoneExample
{
}
第2步:将构造函数设置为私有。
示例:
Step 2: Set the constructor as private.
Example:
class SingletoneExample
{
private SingletoneExample()
{
}
}
步骤3:创建类类型引用变量。
示例:
Step 3: Create class type reference variable.
Example :
class SingletoneExample
{
private SingletoneExample instance;
private SingletoneExample()
{
}
}
第4步:创建方法。将方法类型设置为Class Type。使用类类型varible的引用创建一个对象并将其返回。
Step 4: Create a method. Set the method type as Class Type.create a object with the reference of class type varible and return it.
class SingletoneExample
{
private SingletoneExample instance;
private SingletoneExample()
{
}
public static SingletoneExample getInstance()
{
instance=new SingletoneExample();
return instance;
}
}
第5步:从其他课程中调用singletoneExample类行为。
第6步:单线人例子课程成为单身人士。
Step 5: From other class you call the singletoneExample class behaviour.
Step 6: The singletoneExample class becomes singletone.
这篇关于我们如何以及在哪种情况下使用Singletone设计模式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!