5

私は、真のディープクローンを実行できる汎用クローン関数を作成しようとしていました。私はこのリンクに出くわしました.javascriptでディープクローンを作成する方法とそこから関数を取得しました.

このコードは、直接 Javascript を使用しようとするとかなりうまく機能します。コードを少し変更して、GWT に JSNI コードを入れてみました。

クローン機能:

deepCopy = function(item)
{
    if (!item) {
        return item;
    } // null, undefined values check

    var types = [ Number, String, Boolean ], result;

    // normalizing primitives if someone did new String('aaa'), or new Number('444');
    types.forEach(function(type) {
        if (item instanceof type) {
            result = type(item);
        }
    });

    if (typeof result == "undefined") {
        alert(Object.prototype.toString.call(item));
        alert(item);
        alert(typeof item);
        if (Object.prototype.toString.call(item) === "[object GWTJavaObject]") {
            alert('1st');
            result = [];
            alert('2nd');
            item.forEach(function(child, index, array) {//exception thrown here
                alert('inside for each');
                result[index] = deepCopy(child);
            });
        } else if (typeof item == "GWTJavaObject") {
            alert('3rd');

            if (item.nodeType && typeof item.cloneNode == "function") {
                var result = item.cloneNode(true);
            } else if (!item.prototype) { 
                result = {};
                for ( var i in item) {
                    result[i] = deepCopy(item[i]);
                }
            } else {
                if (false && item.constructor) {
                    result = new item.constructor();
                } else {
                    result = item;
                }
            }
        } else {
            alert('4th');
            result = item;
        }
    }

    return result;
}

そして、この関数に渡すリストは次のようになります。

List<Integer> list = new ArrayList<Integer>();
        list.add( new Integer( 100 ) );
        list.add( new Integer( 200 ) );
        list.add( new Integer( 300 ) );

        List<Integer> newList = ( List<Integer> ) new Attempt().clone( list );

        Integer temp = new Integer( 500 );
        list.add( temp );

        if ( newList.contains( temp ) )
            Window.alert( "fail" );
        else
            Window.alert( "success" );

しかし、これを実行すると、行の直後のクローン関数で null ポインター例外が発生しますalert("2nd")

親切に助けてください。

PS:ここでは、任意のオブジェクトのクローンに使用できる汎用クローン メソッドを取得しようとしています。

4

1 に答える 1

0

GWT プロトタイプ オブジェクトには forEach メソッドがありません。それらは、javascript オブジェクトではなく、java オブジェクトのように振る舞うはずなので、標準の javascript オブジェクト プロトタイプを継承しません。

おそらく Object.prototype.forEach.call(item, function(){}) で逃げることができます

于 2013-01-11T14:59:27.063 に答える