[ActionScript3.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

posted on 2015-02-14 16:58  晏过留痕  阅读(503)  评论(0编辑  收藏  举报