本文介绍了如何每个类仅创建一个实例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

即使在谷歌搜索后,我也没有找到完全合适的东西!

请帮助我.

修改:

有人可以用Singleton模式解释这一行吗?

Even after googling I didn''t find anything exactly fitting!

Please help me in this.

Modification:

Can somebody please explain this line in the Singleton pattern:

public class OnlyOne
{
    // Please explain this line too me
    private static OnlyOne instance = null;

    private OnlyOne()
    {
    }

    public static OnlyOne getInstance()
    {
        if(instance==null)
        {
            instance = new OnlyOne();
        }
        return instance;
    }
}

推荐答案




这篇关于如何每个类仅创建一个实例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-13 23:37