javascript如何创建对象(2)

function CreateAnimal(name, age) { //1.2:把外部参数绑定实例属性 this.name = name; this.age = age; } //1.3把相同的属性,绑定在原型上(原型属性,原型方法) CreateAnimal.prototype.gender = "male"; CreateAnimal.prototype.style = function() { console.log(this.name + " ailers"); }; //2:调用构造函数创建对象 var cat1 = new CreateAnimal("xiaohua", "2"); var cat2 = new CreateAnimal("xiaohua", "2"); cat1.style(); console.log(cat1.style==cat2.style);//方法引用地址一样,将属性放到原型对象中,节约地址 //instanceof可以来判断对象属于哪一个【函数】 //constructor 建造者 也可以用来判断对象属于哪个【构造函数】 【常】 //实例对象保存一个 constructor属性指向它的构造函数 //instanceof and constructor 区别 console.log(cat1 instanceof CreateAnimal);//true console.log(cat1 instanceof Object);//true console.log(cat1.constructor == CreateAnimal);//true console.log(cat1.constructor == Object); //==false //构造函数的原型也有constructor属性指会构造函数 console.log(CreateAnimal.prototype.constructor == CreateAnimal);//true //in判断该属性是否存在这个对象中,这个属性为实例属性或原型 // alert("name" in cat1)//true // alert("gender" in cat1);//true //hasOwnProperty:来判断某一个属性到底是实例属性,还是继承自原型属性 if 是 为true, else不存在|不是返回false; console.log(cat1.hasOwnProperty("aaa"));//false 不存在的属性返回为false console.log(cat1.hasOwnProperty("name"));//true 实例属性 console.log(cat1.hasOwnProperty("style"));//false 原型属性返回为false //遍历属性找原型属性 //判断参数是否为原型属性 工具类 console.log(isPrototype("gender", cat1));//true function isPrototype(proString, obj) { if(proString in obj) { if(!obj.hasOwnProperty(proString)) { return true; } else { return false; } } else { return false; } } /* function isProperty(object, property) {//判断原型中是否存在属性    return !object.hasOwnProperty(property) && (property in object); }*/

动态原型模式

//构造函数中初始化原型 function per(name, age, gender) { this.name = name; this.age = age; this.gender = gender; //只在初始化原型的时候执行一次 if(typeof this.sayName != "function") { Person.prototype.sayName = function() { alert(this.name); } } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzfjyj.html