詳解es6 class語法糖中constructor方法和super的做用

首先,ES6 的 class 屬於一種「語法糖」,因此只是寫法更加優雅,更加像面對對象的編程,其思想和 ES5 是一致的。編程 function Point(x, y) { this.x = x; this.y = y; } Point.prototype.toString = function() { return '(' + this.x + ',' + this.y + ')'
相關文章
相關標籤/搜索