typescript 打字稿中的一些类

Posted

tags:

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

class splitter {
	splitter(text: String) {
		return text.split(" ");
	}
	splitby() {
		
	}
}

class character {
	char: String;
	changechar: Function
	constructor(sym: String) {
		if(sym.length>1) throw "Must be length one";
		this.char = sym;
		this.changechar = function(sym:String) {
			this.char = sym;
		}
	}
}

以上是关于typescript 打字稿中的一些类的主要内容,如果未能解决你的问题,请参考以下文章

打字稿中的可选属性类

typescript 打字稿中的镜头

typescript 打字稿中的导出示例

typescript 打字稿中的角度转换日期格式

typescript kotlin在打字稿中的风格代表

在打字稿中的类中创建具有未知参数的方法