Java将变量从超类转移到子类

时间:2013-03-09 18:39:20

标签: java constructor this extends

在java中,我有一个扩展了B类的A类

我想将B类的所有内容分配给A类 事情是我想从A类内部做到这一点现在这似乎很合理,只需转移所有变量。

这是困难的部分。我没有制作B类,它是android.widget的一部分 在c ++中,你只需要接受b类,然后分配给*并投射它。

我将如何在java中执行此操作?

为了进一步阐明它是一个relativelayout我需要将relativelayout的所有内容复制到一个扩展相对布局的类

class something extends other
{
public something(other a){
 //transfer all of the other class into something
 this=(something)a;  // obviously doesn't work
 //*this doesn't exist?
 //too many variables to transfer manually
}
}

非常感谢所有的帮助。非常感谢!!!

3 个答案:

答案 0 :(得分:4)

请参阅下面给出的代码。它使用java.lang.reflect包从超类中提取出所有字段,并将获得的值分配给子类变量。

import java.lang.reflect.Field;
class Super
{
    public int a ;
    public String name;
    Super(){}
    Super(int a, String name)
    {
        this.a = a;
        this.name = name;
    }
}
class Child extends Super 
{
    public Child(Super other)
    {
        try{
        Class clazz = Super.class;
        Field[] fields = clazz.getFields();//Gives all declared public fields and inherited public fields of Super class
        for ( Field field : fields )
        {
            Class type = field.getType();
            Object obj = field.get(other);
            this.getClass().getField(field.getName()).set(this,obj);
        }
        }catch(Exception ex){ex.printStackTrace();}
    }
    public static void main(String st[])
    {
        Super ss = new Super(19,"Michael");
        Child ch = new Child(ss);
        System.out.println("ch.a="+ch.a+" , ch.name="+ch.name);
    }
}

答案 1 :(得分:0)

父类(非私有)的所有变量和函数都是子类中的直接访问。您不需要在子类中分配任何东西。您可以直接访问。

答案 2 :(得分:0)

这将工作:

Something something = (Something) other.clone();

如果其他的真实运行时类型Other

相反,您必须创建一个复制构造函数,或者将other实例化为Something的实例,然后克隆它。