typescript 具有只读修饰符的类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 具有只读修饰符的类相关的知识,希望对你有一定的参考价值。

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"; // error! name is readonly.

以上是关于typescript 具有只读修饰符的类的主要内容,如果未能解决你的问题,请参考以下文章

TypeScript躬行记——类

修饰符的权限

Javafinal修饰符的使用

JAVA中的四种作用域访问修饰符以及各自的关键字个特点是?

java修饰符的一些知识点

Java中各种(类方法属性)访问修饰符与修饰符的说明