ts中的类
es5中的类
function Person(){
this.name = '张三',
this.age = 20
}
let p = new Person()
console.log(p.name);//张三
构找函数和原型链里面增加方法
function Person(){
this.name = '张三',
this.age = 20
this.run = function(){
console.log(this.name+'在运动');
}
}
Person.getInfo = function(){
console.log('我是一个静态方法');
}
//原型链上面的属性会被多个实例共享 而构造函数不会
Person.prototype.sex = '男'
Person.prototype.work = funct
ts中的类最先出现在Python成神之路。
版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/5178.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
THE END
二维码
共有 0 条评论