gpt4 book ai didi

java - 如何将基类中的字段很好地复制到派生类中?

转载 作者:行者123 更新时间:2023-12-01 13:10:15 25 4
gpt4 key购买 nike

我有一个基类A和一个派生类B。如何在简单的一行中将 A 类型的对象中的字段复制到 B 类型的对象中?我有一个方法,如果有帮助的话,可以从字段值构建对象。我不想使用任何类型的反射!

class A{
String id; //and setter/getter
}
class B extends A{
String b; //and setter/getter
}
public A buildA(String id){
A=new A();
a.setId(id);
return A();
}
// how to copy A=buildA("a") into a B type of object...
// I would avoid doing
//public B voidB(String id, string b){
B=new B();
b.setId(
b.setB...
// Remark - I cannot do the init from constructor with fields!

最佳答案

有一个名为 Dozer 的库,这可能对你有帮助(不过我还没有尝试过)。

关于java - 如何将基类中的字段很好地复制到派生类中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22930860/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com