5

汎用的に定義されたクラスのコピー コンストラクターをコーディングしたいと考えています。二分木のノードとして使用する内部クラス Node があります。新しいオブジェクトを渡すと

public class treeDB <T extends Object> {
    //methods and such

    public T patient; 
    patient = new T(patient2);       //this line throwing an error
    //where patient2 is of type <T>
}

コピーコンストラクターを一般的に定義する方法がわかりません。

4

1 に答える 1

9

Tそれが表すクラスに必要なコンストラクターがあることを保証できないため、new T(..)フォームを使用できません。

それが必要かどうかはわかりませんが、コピーしたいオブジェクトのクラスにコピーコンストラクターがあることが確実な場合は、次のようなリフレクションを使用できます

public class Test<T> {

    public T createCopy(T item) throws Exception {// here should be
        // thrown more detailed exceptions but I decided to reduce them for
        // readability

        Class<?> clazz = item.getClass();
        Constructor<?> copyConstructor = clazz.getConstructor(clazz);

        @SuppressWarnings("unchecked")
        T copy = (T) copyConstructor.newInstance(item);

        return copy;
    }
}
//demo for MyClass that will have copy constructor: 
//         public MyClass(MyClass original)
public static void main(String[] args) throws Exception {
    MyClass mc = new MyClass("someString", 42);

    Test<MyClass> test = new Test<>();
    MyClass copy = test.createCopy(mc);

    System.out.println(copy.getSomeString());
    System.out.println(copy.getSomeNumber());
}
于 2013-10-07T02:43:53.277 に答える