欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

web前端js

程序员文章站 2022-06-09 17:55:26
...

// 实现一个js类型,包含public属性和private属性

 function Emp(id,ename,salary,age){
    	this.id=id;
    	this.ename=ename;
    	this.salary=salary;

    	Object.defineProperties(this,{
      		id:{writable:false},
		    salary:{enumerable:false},
      		_age:{
        			writable:true,
				    enumerable:false
      		},
      		age:{
				   get:function(){return this._age},
				   set:function(val){
					     if(val<18 || val>60){
						       throw new Error("年龄错误")
          				}
			          	this._age=val;
		        	},
        		    enumerable:true
      		}
    	});
    	this.age=age;
    	Object.seal(this);//密封
  }
相关标签: web面试