当前位置:   article > 正文

es6类class声明类的方式_.net class 声明方法

.net class 声明方法


class Point2{
constructor(name , age) { //只要触发new实例化操作即执行
    this.name = name;
    this.age = age;
} //注意在class类中,方法之间不需要添加逗号
showName(){
return `我的名字:${this.name}`;
}
showAge(){
return `我的年龄:${this.age}`;
}
}
var p2 = new Point2('测试2' , 20);

console.log(p2.showName(),p2.showAge());



//也可以这么写,不推荐!
const Point3 = class{
constructor(name , age) { //只要触发new实例化操作即执行
    this.name = name;
    this.age = age;
} //注意在class类中,方法之间不需要添加逗号
showName(){
return `我的名字:${this.name}`;
}
showAge(){
return `我的年龄:${this.age}`;
}
}
var p3 = new Point3('测试3' , 30);
console.log(p3.showName(),p3.showAge());
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/78772
推荐阅读
相关标签
  

闽ICP备14008679号