<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
</html>
<script>
function Person(name,age){
this.name = name;
this.age = age;
}
Person.prototype.hi = function(){
console.log("我的名字是"+this.name+",今年"+this.age);
}
Person.prototype.legs = 2;
Person.prototype.arms = 2;
Person.prototype.wall = function(){
return this.name+",会走路"
}
function Status(name,age,className){
Person.call(this,name,age);
this.className = className
}
Status.prototype = Object.create(Person.prototype);
Status.constructor = Status;
Status.prototype.hi = function(){
console.log("我的名字是"+this.name+",今年"+this.age+',班级是'+this.className);
}
Status.prototype.learn = function(subject){
console.log("我的名字是"+this.name+",今年"+this.age+',班级是'+this.className+"学科是"+subject);
}
var obj = new Status('tom',22,"一班");
console.log(obj.__proto__);
console.log(Status.prototype);
console.log(Status.prototype === obj.__proto__);//true
console.log(Status.prototype.__proto__);
console.log(Person.prototype);
console.log(Person.prototype === Status.prototype.__proto__);//true
console.log(Person.prototype.__proto__);
console.log(Object.prototype);
console.log(Person.prototype.__proto__ === Object.prototype);//true
console.log(Object.prototype.__proto__);
</script>
JavaScript深入浅出——函数面向对象
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 考虑真实世界中可能遇到的问题 狗门 2.0 运行一阵后又出现了问题,不只是主人自己的狗狗,其他任何狗叫唤,狗门都会...
- 快速实现一个狗门系统 这是一个关于狗门新项目。用户想要一个能用遥控器控制的狗门:按一下开门,再按一下关门。 程序员...