1.自定义构造函数
function Person(name,age,sex) {
this.name=name;
this.age=age;
this.sex=sex;
this.eat=function () {
console.log(“吃”);
};
}
this.name=name;
this.age=age;
this.sex=sex;
this.eat=function () {
console.log(“吃”);
};
}
2.创建对象
var per=new Person(“小明”,38,”女”);
3.实例对象的构造器
实例对象的构造器是指向Person的,结果是true,所以,这个实例对象per就是通过Person来创建的
console.log(per.constructor==Person);//true
4.判断这个对象是不是这种数据类型
console.log(per.constructor==Person);
console.log(per instanceof Person);//推荐
console.log(per instanceof Person);//推荐
5.总结
实例对象和构造函数之间的关系:
1. 实例对象是通过构造函数来创建的—创建的过程叫实例化
2.如何判断对象是不是这个数据类型?
1) 通过构造器的方式 实例对象.构造器==构造函数名字
2) 对象 instanceof 构造函数名字
尽可能的使用第二种方式来识别
本篇博客来自于传智播客视频教程的总结以及笔记的整理,仅供学习交流,切勿用于商业用途
您可能感兴趣的文章:JavaScript 面向对象程序设计详解【类的创建、实例对象、构造函数、原型等】JavaScript原型对象、构造函数和实例对象功能与用法详解
© 版权声明
文章版权归作者所有,未经允许请勿转载。