设计模式——原型模式(Prototype Pattern)

本文详细介绍了Java中的原型模式,通过Cloneable接口实现User类克隆,以及PrototypeFactory的运用。同时,展示了ArrayList的clone方法应用,并探讨了与设计模式(如装饰器、访问者等)的关系。
摘要由CSDN通过智能技术生成

一、原型模式定义

类型: 创建型模式
目的: 用于创建重复的对象,同时又能保证性能。

二、例子

2.1 利用Cloneable克隆接口实现的。

2.1.1 定义可复制自身的User类

public class User implements Cloneable {
    protected String id;
    protected String name;

    public User(String id, String name) {
        this.id = id;
        this.name = name;
    }
    
    public Object clone() {
        Object clone = null;
        try {
            clone = super.clone();
        } catch (CloneNotSupportedException e) {
            e.printStackTrace();
        }
        return clone;
    }
}

2.1.2 定义原型工厂PrototypeFactory

public class PrototypeFactory{

    private static User prototypeUser;

    public static User setPrototypeUser(User prototypeUser){
        prototypeUser = prototypeUser;
    }
    public static User getPrototypeUser(){
        if(prototypeUser == null){
            prototypeUser = new User("0","xxxx");
        }
        return (User) prototypeUser.clone();
    }
}

2.1.3 使用

public static void main(String[] args) throws Exception{

	PrototypeFactory.setPrototypeUser(new User("root","admin"));

	User prototypeUser1 =  PrototypeFactory.getPrototypeUser();
	User prototypeUser2 =  PrototypeFactory.getPrototypeUser();
	User prototypeUser3 =  PrototypeFactory.getPrototypeUser();
}

除了clone,还可以使用反序列化和拷贝工具实现原型模式。

2.2 JDK源码——ArrayList

public class ArrayList<E> extends AbstractList<E> implements List<E>, RandomAccess, Cloneable, java.io.Serializable{
	    public Object clone() {
        try {
            ArrayList<?> v = (ArrayList<?>) super.clone();
            v.elementData = Arrays.copyOf(elementData, size);
            v.modCount = 0;
            return v;
        } catch (CloneNotSupportedException e) {
            // this shouldn't happen, since we are Cloneable
            throw new InternalError(e);
        }
    }
}

三、其他设计模式

创建型模式
结构型模式

行为型模式

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

码鹿的笔记

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值