es6的class属性方法

xml 复制代码
<!DOCTYPE html>
<html>
    <head>
       <meta charset="utf-8" />
       <title>class属性方法</title>
    </head>
    <body>
       <script>
          class Pesion{
             constructor(name,age){
                this.name=name;
                this.age=age;
             }
             //实例方法
             say(){
                console.log(this.name,this.age);
             }
          }
          let p=new Pesion("张三",20);
           p.say()
          //静态属性和方法
          class Pesion {
             constructor(name, age) {
                this.name = name;
                this.age = age;
             }
             //静态方法
             static say() {
                console.log("静态方法被调用");
             }
          }
          Pesion.say()
          class Perple{
             //静态方法的this指向类,而非类的实例
             static staticSay(){
                this.say()//调用静态方法
             }
             static say(){
                console.log("静态say方法");
             }
             say(){
                console.log("普通方法");
             }
          }
          Perple.staticSay()
          //静态属性
          class Student{}
          Student.age=100
          console.log(Student.age);
       </script>
    </body>
</html>
相关推荐
夏梦春蝉23 分钟前
ES6从入门到精通:模块化
前端·ecmascript·es6
拓端研究室1 小时前
视频讲解:门槛效应模型Threshold Effect分析数字金融指数与消费结构数据
前端·算法
工一木子2 小时前
URL时间戳参数深度解析:缓存破坏与前端优化的前世今生
前端·缓存
半点寒12W4 小时前
微信小程序实现路由拦截的方法
前端
某公司摸鱼前端5 小时前
uniapp socket 封装 (可拿去直接用)
前端·javascript·websocket·uni-app
要加油哦~5 小时前
vue | 插件 | 移动文件的插件 —— move-file-cli 插件 的安装与使用
前端·javascript·vue.js
小林学习编程5 小时前
Springboot + vue + uni-app小程序web端全套家具商场
前端·vue.js·spring boot
柳鲲鹏5 小时前
WINDOWS最快布署WEB服务器:apache2
服务器·前端·windows
weixin-a153003083166 小时前
【playwright篇】教程(十七)[html元素知识]
java·前端·html
ai小鬼头6 小时前
AIStarter最新版怎么卸载AI项目?一键删除操作指南(附路径设置技巧)
前端·后端·github