代码
提交代码
class Calculate { // 类的属性 public x: number public y: number // 构造函数 constructor(x: number, y: number) { this.x = x this.y = y } // 类的方法 add () { return this.x + this.y } } const calculate = new Calculate(1, 2) console.log(calculate.add()) // 3 console.log(typeof Calculate) // 'function' console.log(Calculate === Calculate.prototype.constructor) // true
运行结果