美文网首页
单例模式

单例模式

作者: RoronoaZoro丶 | 来源:发表于2017-06-23 10:50 被阅读0次

    publicclassSingleton {

    privatestaticSingleton instance;

    privateSingleton (){}

    publicstaticsynchronizedSingleton getInstance() {

    if(instance ==null) {

    instance =newSingleton();

    }

    returninstance;

    }

    相关文章

      网友评论

          本文标题:单例模式

          本文链接:https://www.haomeiwen.com/subject/ftxccxtx.html