js中 理解 this.initialize.apply ( this, arguments ) 定义对象的方式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中 理解 this.initialize.apply ( this, arguments ) 定义对象的方式相关的知识,希望对你有一定的参考价值。

var Class = {
create:function() {
return function() {
this.initialize.apply(this, arguments);
};
}
}

var Tool = Class.create();
Tool.prototype = {
initialize: function($container){

this.val = 32;
},
getVal:function(){
return this.val;
},
setVal:function(_val){

this.val = _val;
}
}

 

技术分享

 


















以上是关于js中 理解 this.initialize.apply ( this, arguments ) 定义对象的方式的主要内容,如果未能解决你的问题,请参考以下文章

如何理解Vue.js的组件中的slot

关于js中闭包的理解

深入理解JS异步编程

js原型链和继承的理解

js中原型和原型链理解

js中的闭包理解