我有2个这样的界面
public interface Super {
void setA();
Long getA();
}
public interface Sub extends Super{
}
现在有2个类正在实现这些
public class AStore implements Super {
Long A;
}
public class BStore implements Sub{
LongA;
}
现在如果我使用Apache库
BeanUtils.copyProperties(Sub, Super);
有效 但并非相反
BeanUtils.copyProperties(Super, Sub);
我是否仍然可以通过其他任何库将值从Sub复制到Super?