java实现对象克隆_[Java教程]JavaScript实现对象克隆函数clone( )的程序及分析

[Java教程]JavaScript实现对象克隆函数clone( )的程序及分析

0 2014-03-25 13:00:17

程序:

Object.prototype.Clone = function()

{

var objClone;

if ( this.constructor == Object ) objClone = new this.constructor();

else objClone = new this.constructor(this.valueOf());

for ( var key in this )

{

if ( objClone[key] != this[key] )

{

if ( typeof(this[key]) == 'object' )

{

objClone[key] = this[key].Clone();

}

else

{

objClone[key] = this[key];

}

}

}

objClone.toString = this.toString;

objClone.valueOf = this.valueOf;

return objClone;

}

a = {k1:1, k2:2, k3:3};

b = a.Clone();

b.k1=4;

alert(b.k1);

alert(a.k1);

分析:

1、JavaScript constructor 属性:constructor 属性返回对创建此对象的数组函数的引用。http://www.w3school.com.cn/jsref/jsref_constructor_array.asp

var test=new Array();

if (test.constructor==Array)

{

document.write("This is an Array");

}

if (test.constructor==Boolean)

{

document.write("This is a Boolean");

}

if (test.constructor==Date)

{

document.write("This is a Date");

}

if (test.constructor==String)

{

document.write("This is a String");

}

输出:This is an Array2、JavaScript对象数据结构基本形式:{ key : value},其中key:value就为对象的一个属性,key作为属性名称,value为属性值,这值可以是任何JavaScript数据类型。http://www.jb51.net/article/20305.htm

本文网址:http://www.shaoqun.com/a/86758.html

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们:admin@shaoqun.com。

JavaScript

0

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值