Java的第九次学习

Java的第九次学习,第1张

文章目录
  • 单例模式与多例模式
    • 单例模式
      • 饿汉式单例设计
      • 懒汉式单例设计
    • 多例模式
  • 总结

单例模式与多例模式 单例模式

在类中将类的构造方法利用private封装私有化,这样就无法通过外部关键字new实例化该类对象,然后利用本类中被static修饰的方法调用该类已实例化的对象。
单例模式又分为两种,懒汉式单例设计与饿汉式单例设计。

饿汉式单例设计

其实就是在定义成员属性时直接进行对象的实例化

public class jj {
    public static void main(String[] args) {
        A per = A.setA("h");
        System.out.println(per);
    }
}
class A{
    private static final A b = new A("二");
    private String c;
    private A(String c){
        this.c = c;
    }
    public static A setA(String c){
        return b;
    }
    public String toString(){
        return c;
    }
}

懒汉式单例设计

与饿汉式单例设计不同,它是在第一次调用函数时对对象实例化

public class jj {
    public static void main(String[] args) {
        A per = A.setA("h");
        System.out.println(per);
    }
}
class A{
    private static A b;
    private String c;
    private A(String c){
        this.c = c;
    }
    public static A setA(String c){
        A b = new A("二");
        return b;
    }
    public String toString(){
        return c;
    }
}

多例模式

顾名思义,单例模式是针对单个对象,而多例模式自然是多个对象

public class text {
    public static void main(String[] args){
        Color in = Color.getColor("green");
        System.out.println(in);
    }
}
class Color{
    private static final Color RED = new Color("红色");
    private static final Color GREEN = new Color("绿色");
    private static final Color YELLOW = new Color("黄色");
    private String color;
    private Color(String color){this.color = color;};
    public static Color getColor(String color){
        switch (color){
            case "red":
                return RED;
            case "green":
                return GREEN;
            case "yellow":
                return YELLOW;
            default:
                return null;
        }
    }
    public String toString(){
        return color;
    }
}

总结

通过这次学习对模式有了进一步的了解。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/868563.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存