只是尝试使用typescript在类中编写函数.
class Test { function add(x: number,y: number): number { return x + y; } }
这会导致以下错误:
TypeScript Unexpected token,A constructor,method,accessor or
property was expected.
我复制了这个例子:https://www.typescriptlang.org/docs/handbook/functions.html
我错过了什么吗?我糊涂了!
解决方法
您不应该在Typescript类定义中使用function关键字.试试这个:
class Test { add(x: number,y: number): number { return x + y; } }