码迷,mamicode.com
首页 > 编程语言 > 详细

javascript私有方法揭示为公有方法

时间:2014-08-05 15:42:59      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   os   io   strong   for   

揭示模式可用于将私有方法暴露为公共方法。当为了对象的运转而将所有功能放置在一个对象中以及想尽可能地保护该对象,这种揭示模式就非常有用。

板栗:

var myarray;
(function(){
  var astr = "[object Array]",
  toString = Object.prototype.toString;
  function isArray(a){
    return toString.call(a) === astr;
  }
  function indexOf(haystack,needle){
    var i=0,
    max = haystack.length;
    for( ; i<max; i++ ){
      if( haystack[i] === needle ){
      return i;
    }
  }
  return -1;
}
myarray = {
  isArray : isArray,
  indexOf : indexOf,
  inArray : indexOf
}
}())
console.log( myarray.isArray([1,2]) ); //输出:true
console.log( myarray.isArray({0:1}) ); //输出:false
console.log( myarray.indexOf([‘a‘,‘b‘,‘z‘],‘z‘) ); //输出:2
console.log( myarray.inArray([‘a‘,‘b‘,‘z‘],‘z‘) ); //输出:2

console.log(myarray);

bubuko.com,布布扣

javascript私有方法揭示为公有方法,布布扣,bubuko.com

javascript私有方法揭示为公有方法

标签:style   blog   http   java   os   io   strong   for   

原文地址:http://www.cnblogs.com/fengzekun/p/3892311.html

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