// 定义类 class Rectangle { constructor(height, width) { this.height = height; this.width = width } getSize() { console.log(this.width + ' ' + this.height) } } const get = new Rectangle(11, 22); get.getSize()