//对象初始化
C c=new C(); A a=new A(); B b=new B();
//合并AB为C BeanUtils.copyProperties(a,c); BeanUtils.copyProperties(b,c);
2023-11-07 21:44:04
//对象初始化
C c=new C(); A a=new A(); B b=new B();
//合并AB为C BeanUtils.copyProperties(a,c); BeanUtils.copyProperties(b,c);