对象拷贝工具类


import com.google.common.collect.Lists;
import org.modelmapper.AbstractConverter;
import org.modelmapper.Converter;
import org.modelmapper.ModelMapper;
import org.modelmapper.convention.MatchingStrategies;

import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.List;

/**
 * 对象拷贝工具类
 *
 * @author YML
 * @since 2022/06/22
 */
@SuppressWarnings("unused")
public class ModelMapperUtil {

    private static final ModelMapper MODEL_MAPPER = new ModelMapper();

    static {

        Converter<String, LocalDateTime> toStringDate = new AbstractConverter<String, LocalDateTime>() {
            @Override
            protected LocalDateTime convert(String source) {
                DateTimeFormatter formatter = DateTimeFormatter.ISO_LOCAL_DATE_TIME;
                LocalDateTime dateTimeParked = LocalDateTime.parse(source, formatter);
                return dateTimeParked;
            }
        };
        MODEL_MAPPER.addConverter(toStringDate);
        MODEL_MAPPER.getConfiguration().setMatchingStrategy(MatchingStrategies.STRICT);
    }

    /**
     * 单个对象拷贝
     */
    public static <D> D strictMap(Object source, Class<D> destinationType) {
        return source == null ? null : MODEL_MAPPER.map(source, destinationType);
    }

    /**
     * 数组对象拷贝
     */
    @SuppressWarnings(value = "unchecked")
    public static <D> List<D> strictMapList(Object source, Class<D> componentType) {
        if (source == null) {
            return null;
        } else {
            List<D> list = Lists.newArrayList();
            List<Object> objectList = (List<Object>) source;
            for (Object obj : objectList) {
                list.add(MODEL_MAPPER.map(obj, componentType));
            }
            return list;
        }
    }

}

Java对象拷贝工具类可以通过实现对象的深拷贝或浅拷贝两种方式来实现。 浅拷贝是指只复制对象本身,而不复制对象中的引用类型变量。在Java中,可以通过实现Cloneable接口以及重写clone()方法来实现对象的浅拷贝。通过调用对象的clone()方法,返回一个新的对象,该对象的字段与原对象相同。 下面是一个简单的浅拷贝工具类的示例: ``` public class ShallowCopyUtils { public static <T extends Cloneable> T shallowCopy(T obj) { try { return (T) obj.clone(); } catch (CloneNotSupportedException e) { e.printStackTrace(); } return null; } } ``` 深拷贝是指不仅复制对象本身,还复制对象中的引用类型变量。在Java中,可以通过实现Serializable接口以及通过对象的序列化和反序列化来实现对象的深拷贝。通过将对象写入输出流,再从输入流读取对象,可以得到一个新的对象,同时保留原对象中的所有引用对象的副本。 下面是一个简单的深拷贝工具类的示例: ``` public class DeepCopyUtils { public static <T extends Serializable> T deepCopy(T obj) { try { ByteArrayOutputStream bos = new ByteArrayOutputStream(); ObjectOutputStream oos = new ObjectOutputStream(bos); oos.writeObject(obj); ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray()); ObjectInputStream ois = new ObjectInputStream(bis); T copy = (T) ois.readObject(); return copy; } catch (IOException | ClassNotFoundException e) { e.printStackTrace(); } return null; } } ``` 通过使用这两个工具类,我们可以实现对象拷贝,无论是浅拷贝还是深拷贝,根据实际需求选择适合的方法。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值