码迷,mamicode.com
首页 > 其他好文 > 详细

[ActionScript3.0] 为内建类添加方法

时间:2015-02-14 17:24:28      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

通过使用prototype在继承内建类特性的同时加入新方法

Array.prototype.removeElement = function (item:*):void {

  var index:int = this.indexOf(item);  

  if(index>-1){  

    this.splice(index,1);  

  }

}

var arr:Array = [1,2,3];

arr.removeElement(1);

trace(arr);//2,3

[ActionScript3.0] 为内建类添加方法

标签:

原文地址:http://www.cnblogs.com/frost-yen/p/4291985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!