为class添加方法,对象合并

2020-04-02 15:23:22 浏览数 (1)

代码语言:javascript复制
 // 
    class Point {
      toString() {
        console.log("打印");
      }
    }
    // 为类添加方法:方式一
    Point.prototype.say = function() {
      console.log(" 360");
    };
    // 为类添加方法:方式二  Object.assign 是对象合并的意思
    Object.assign(Point.prototype, {
      getName: function() {
        console.log(" 852852");
      },
      getAge: function() {
        console.log(" 85285289");
      }
    });
    // this.say 
    Object.assign ( { name: '1',age: 2}, { si: 'status',age: 5220 })

    class People { 

      say() {
        console.log( " say");
        

      }
    };

    let obj = new Point();
    obj.toString();
    obj.say();
    obj.getName();

0 人点赞