将值从子类复制到SuperClass Java

时间:2018-10-24 07:08:04

标签: java inheritance apache-commons

我有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?

0 个答案:

没有答案