zoukankan      html  css  js  c++  java
  • js创建对象之原型模式3、更简洁的创建原型模式

    <!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="UTF-8">
    		<title></title>
    	</head>
    	<body>
    		<script type="text/javascript">
    		//创建对象
    		//原型模式
    		//更简单的原型语法
    		//之前为原型添加属性都要写一遍prototype,麻烦,解决方法如下
    		function Person(){};
    		Person.prototype = {
    			name: "宝清老窖",
    			age: 30,
    			job: "Software",
    			sayName: function(){
    				console.log(this.name);
    			}
    		}
    		//简便了不少哈,但是constructor属性不再指向Person了,因为我们重写了prototype
    		//虽然instanceof还能返回正确的结果,但是constrctor已经无法确定对象的类型
    		var friend = new Person();
    		console.log(friend instanceof Object);	//true
    		console.log(friend instanceof Person);	//true
    		
    		console.log(friend.constructor == Person);	//false
    		console.log(friend.constructor == Object);	//true
    		
    		console.log('---------------------------------------------------');
    		//所以需要改造成下面的方式
    		function Person(){};
    		Person.prototype = {
    			constructor: Person,
    			name: "宝清老窖",
    			age: 30,
    			job: "Software",
    			sayName: function(){
    				console.log(this.name);
    			}
    		}
    		var friend = new Person();
    		console.log(friend instanceof Object);	//true
    		console.log(friend instanceof Person);	//true
    		
    		console.log(friend.constructor == Person);	//true
    		console.log(friend.constructor == Object);	//false
    		//但是以这种方式的话,constructor的[[Enumerable]]为true
    		//所以得改成false
    		function Person(){};
    		Person.prototype = {
    			name: "宝清老窖",
    			age: 30,
    			job: "Software",
    			sayName: function(){
    				console.log(this.name);
    			}
    		}
    		Object.defineProperty(Person.prototype , 'constructor' , {
    			enumerable: false,
    			value: Person
    		})
    		//Object.keys(Person.prototype);为		["name", "age", "job", "sayName"]
    		</script>
    	</body>
    </html>
    

      提取出js

    //创建对象
    		//原型模式
    		//更简单的原型语法
    		//之前为原型添加属性都要写一遍prototype,麻烦,解决方法如下
    		function Person(){};
    		Person.prototype = {
    			name: "宝清老窖",
    			age: 30,
    			job: "Software",
    			sayName: function(){
    				console.log(this.name);
    			}
    		}
    		//简便了不少哈,但是constructor属性不再指向Person了,因为我们重写了prototype
    		//虽然instanceof还能返回正确的结果,但是constrctor已经无法确定对象的类型
    		var friend = new Person();
    		console.log(friend instanceof Object);	//true
    		console.log(friend instanceof Person);	//true
    		
    		console.log(friend.constructor == Person);	//false
    		console.log(friend.constructor == Object);	//true
    		
    		console.log('---------------------------------------------------');
    		//所以需要改造成下面的方式
    		function Person(){};
    		Person.prototype = {
    			constructor: Person,
    			name: "宝清老窖",
    			age: 30,
    			job: "Software",
    			sayName: function(){
    				console.log(this.name);
    			}
    		}
    		var friend = new Person();
    		console.log(friend instanceof Object);	//true
    		console.log(friend instanceof Person);	//true
    		
    		console.log(friend.constructor == Person);	//true
    		console.log(friend.constructor == Object);	//false
    		//但是以这种方式的话,constructor的[[Enumerable]]为true
    		//所以得改成false
    		function Person(){};
    		Person.prototype = {
    			name: "宝清老窖",
    			age: 30,
    			job: "Software",
    			sayName: function(){
    				console.log(this.name);
    			}
    		}
    		Object.defineProperty(Person.prototype , 'constructor' , {
    			enumerable: false,
    			value: Person
    		})
    		//Object.keys(Person.prototype);为		["name", "age", "job", "sayName"]
    

      

  • 相关阅读:
    环形链表II 找环入口
    最短无序连续子数组 复制数组排序后与原数组相比
    和为K的子数组 暴力 或 hash+前缀
    在排序数组中查找元素的第一个和最后一个位置 二分法+递归
    NodeJs 批量重命名文件,并保存到指定目录
    NodeJs 批量图片瘦身,重设尺寸和图片质量并保存到指定目录
    NodeJs 获取照片拍摄日期和视频拍摄日期,并按日期目录存档
    Oracle迁移记录
    Oracle数据库迁移前的准备工作(创建用户并且分配权限及表空间)
    Oracle 11g R2性能优化 10046 event【转载】
  • 原文地址:https://www.cnblogs.com/xudy/p/5427049.html
Copyright © 2011-2022 走看看