1

我想分析一个给我进化的源代码。在这段代码中,我有一个类,它的属性类型是同一个类的相同类型。

我不明白这个开发的功能是什么。编译器没问题,但是这段代码中有一个无穷大的引用,不是吗?

例子:

public sealed class CachingServiceLocator : IDisposable
{

    private Hashtable cache; /// Le cache des références vers les services métiers
    private static volatile CachingServiceLocator me; /// L'unique instance du Service Locator

    /// Le constructeur statique
    static CachingServiceLocator()
    {
        try
        {
            me = new CachingServiceLocator();
        }
        catch (Exception)
        {
            MessageBox.Show("Impossible de créer le service locator...\nVeuillez accepter toutes nos excuses pour le désagrément occasionné..." , "Service Locator !", MessageBoxButtons.OK, MessageBoxIcon.Error);
        }
    }

你能给我了解一下这个发展吗?

4

1 回答 1

2

这是单例模式的经典实现。这样可以确保只为此类类型创建一个对象(例如记录器,配置类通常是单例的)

还有其他一些你可能错过的东西,比如这种类型的实例构造函数必须是私有的,它自己的类是密封的等等。

所以你不能这样做

CachingServiceLocator  obj = new CachingServiceLocator() //not allowed

//to get the instance you have to do as following
CachingServiceLocator obj = CachingServiceLocator.me

单例模式

于 2012-06-28T13:16:07.463 回答