java算法面试题:写一个Singleton出来

2018-06-18 03:41:28来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

package com.swift;

public class Singleton {

    public static void main(String[] args) {
        /*
         * 写一个Singleton出来
         */
        ORC_Hungry.getOrc().fun();
        ORC_Lazy.getOrc().fun();
    }

}

class ORC_Hungry{
    //饿汉式
    private static ORC_Hungry orc=new ORC_Hungry();
    private ORC_Hungry() {}
    public static ORC_Hungry getOrc() {
        return orc;
    }
    public void fun() {
        System.out.println("This is a hungry Singleton.....");
    }
}

class ORC_Lazy{
    //懒汉式
    private static ORC_Lazy orc;
    private ORC_Lazy() {}
    public static synchronized ORC_Lazy getOrc() {
        if(orc==null) {
            orc=new ORC_Lazy();
        }
        return orc;
    }
    public void fun() {
        System.out.println("This is a lazy Singleton.....");
    }
}

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Struts2笔记--文件下载

下一篇:关于前后端分离跨域请求问题