《TypeScript实战指南》—3.2.5 只读属性
【摘要】 本节书摘来自华章计算机《TypeScript实战指南》一书中的第3章,第3.2.5节,作者是胡桓铭。
3.2.5 只读属性
可以使用readonly关键字将属性设置为只读的,只读属性必须在声明时或构造函数里进行初始化,示例如下:
class Octopus {
readonly name: string;
readonly numberOfLegs: number = 8;
constructor (theName: string) {
this.name = theName;
}
}
let dad = new Octopus("Man with the 8 strong legs");
dad.name = "Man with the 3-piece suit"; // 错误! name 是只读的.
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)