js构造函数传参
Posted 行动派
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js构造函数传参相关的知识,希望对你有一定的参考价值。
1.直接传参并用this关键字初始化属性
function Person(name,age,learn){ this.name = name; this.age = age; this.learn = learn || false; } Person.prototype.isWork=false; Person.prototype.work=function(){ this.isWork=true; }; Person.prototype.unwork = function(){ this.isWork=false; }; //实例化类的一个对象,传递三个参数中的两个值用于初始化 var tom = new Person("tom",20); alert(tom.name); alert(tom.age);
2.用对象直接量作为构造函数的参数
function Person(defaults){ defaults = defaults || {}; this.name = defaults.name || null; this.age = defaults.age || 0; this.iswork = defaults.iswork || false; } Person.prototype.ismerry = false; Person.prototype.merry = function(){ this.ismerry = true; }; Person.prototype.unmerry = function(){ this.ismerry = false; }; var tom = new Person({nam:"tom",age:22});
以上是关于js构造函数传参的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向ART 脱壳 ( DexClassLoader 脱壳 | DexClassLoader 构造函数 | 参考 Dalvik 的 DexClassLoader 类加载流程 )(代码片段
Android 逆向ART 脱壳 ( DexClassLoader 脱壳 | DexClassLoader 构造函数 | 参考 Dalvik 的 DexClassLoader 类加载流程 )(代码片段