TypeScript专题-Static和使用技巧
Posted allyh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeScript专题-Static和使用技巧相关的知识,希望对你有一定的参考价值。
class People { static _name: string; print() { //alert(this.name);// 编译不通过,doex not exist on type People;声明为static的变量通过类名调用 return(People._name) } constructor(name){ People._name = name; } } // let h = new People(); // // h.name = "aaa"; // People._name = "aaaa"; // h.print(); //创建类型,为当前类的类型(引用数据类型) let p:People; p = new People("aa"); alert(p.print())
以上是关于TypeScript专题-Static和使用技巧的主要内容,如果未能解决你的问题,请参考以下文章