最佳答案
在 TypeScript 3.8 + 中,使用 private
关键字标记成员 private 有什么不同:
class PrivateKeywordClass {
private value = 1;
}
使用 #
私有字段 建议用于 JavaScript:
class PrivateFieldClass {
#value = 1;
}
我应该选择其中一个吗?