我正在尝试编写一个适配器。我有近 50 个属性,我正试图从一个类适应另一个类。
我的代码如下所示:
public static Type2 getType2(Type1 type1)
{
...
if(!StringUtils.isEmpty(type1.getAttribute1()) {
type2.setAttribute1( type1.getAttribute1() );
}
// and so on for all the 50 attributes
...
}
有没有更好的方法来编写这个适配器方法?