基本使用
class Point {
constructor(x, y) {
this.x = x;
this.y = y;
}
get x() {
return this.x;
}
get y() {
return this.y;
}
static distance(a, b) {
const dx = a.x - b.x;
const dy = a.y - b.y;
return Math.hypot(dx, dy);
}
}
const p1 = new Point(5, 5);
const p2 = new Point(10, 10);
console.log(Point.distance(p1, p2));
主意事项
- ES6不支持
private
,public
变量和函数,只有Typescript才有。 - 所有的ES6 class variable都在constructor里面用this.myVarName起始。
- 不支持
function
语法,写函数直接用函数名。 - 支持
static
函数,支持getter
和setter
,语法如上。
网友评论