8

今、私は持っています:

    public <T> T[] toArray(T[] old) {
        T[] arr = Arrays.copyOf(old, old.length + size());
        int i = old.length;
        for(E obj : this) {
            arr[i] = old.getClass().getComponentType().cast(obj);
            ++i;
        }
        return arr;
    }

(これはaxtavtによって指摘されたように、これは契約に従っていないことに注意してください。)

この警告が表示される場所:

Type safety: Unchecked cast from capture#2-of ? to T

これはまだそれを実装するための最良の/最も簡単な方法ですか? その警告なしに何らかの方法でコーディングできますか? そうでなければ、どのように実装しますか?


編集:私の現在の解決策。toArrayまず、そのような警告自体がないようにしたかったのです。したがって、これらの小さなヘルパー関数をコーディングしました (これらについての詳細な説明については、こちらを参照してください)。

@SuppressWarnings("unchecked") static <T> Class<? extends T> classOf(T obj) {
    return (Class<? extends T>) obj.getClass();
}

@SuppressWarnings("unchecked") static <T> Class<? extends T> classOf(T[] array) {
    return (Class<? extends T>) array.getClass().getComponentType();
}

@SuppressWarnings("unchecked") static <T> T[] newArray(Class<T> clazz, int size) {
    return (T[]) Array.newInstance(clazz, size);
}   

今、私のtoArray実装は次のようになります。

    public <T> T[] toArray(T[] array) { 
        int size = size();
        if (array.length < size) { 
            array = newArray(classOf(array), size);
        } else if (array.length > size) {
            array[size] = null;
        }

        int i = 0;
        for (E e : this) {
            array[i] = classOf(array).cast(e);
            i++;
        }
        return array;
    } 
4

2 に答える 2

8

これはまだそれを実装するための最良の/最も簡単な方法ですか? そうでなければ、どのように実装しますか?

それは Josh Bloch のやり方ではありません。のソースを見てくださいAbstractCollection#toArray()。これは、JDK 1.6.0_22 からの関連性の抜粋です。

public <T> T[] toArray(T[] a) {
    // Estimate size of array; be prepared to see more or fewer elements
    int size = size();
    T[] r = a.length >= size 
        ? a 
        : (T[]) Array.newInstance(a.getClass().getComponentType(), size);
    Iterator<E> it = iterator();

    for (int i = 0; i < r.length; i++) {
        if (!it.hasNext()) { // fewer elements than expected
            if (a != r)
                return Arrays.copyOf(r, i);
            r[i] = null; // null-terminate
            return r;
        }
        r[i] = (T) it.next();
    }
    return it.hasNext() ? finishToArray(r, it) : r;
}

ソースコードはsrc.zip、JDK のファイルで入手できます。AbstractCollectionクラスを開いたときに表示できるように、Eclipse/IDEA/Netbeans などの適切な IDE に統合できます。

その警告なしに何らかの方法でコーディングできますか?

いいえ@SuppressWarnings("unchecked")、気になる場合は使用してください。

そうは言っても、少なくとも基本的な機能が既に実装されているように、可能であればAbstractCollection実装する代わりに拡張することをお勧めします。Collection

于 2010-10-24T23:10:15.713 に答える
5

まず第一に、それが の実装であると想定されている場合Collection.toArray()、それは規約に従っていません。配列に古い要素を保持するべきではありません ( javadocを参照してください)。

正しい実装は次のようになります。

public <T> T[] toArray(T[] array) { 
    int size = size();
    if (array.length < size) { 
        // If array is too small, allocate the new one with the same component type
        array = Array.newInstance(array.getClass().getComponentType(), size);
    } else if (array.length > size) {
        // If array is to large, set the first unassigned element to null
        array[size] = null;
    }

    int i = 0;
    for (E e: this) {
        // No need for checked cast - ArrayStoreException will be thrown 
        // if types are incompatible, just as required
        array[i] = (T) e;
        i++;
    }
    return array;
} 
于 2010-10-24T23:27:51.443 に答える