更新 - 此问题的上下文是预先TypeScript 1.4。从那个版本开始,我的第一个猜测得到了语言的支持。请参阅答案的更新。
我可以声明f
是一个接受字符串并返回字符串的函数:
var f : (string) => string
我可以声明g
是一个字符串数组:
var g : string[]
如何将h
声明为“接受字符串并返回字符串的函数”?
我的第一个猜测:
var h : ((string) => string)[]
这似乎是一个语法错误。如果我拿掉额外的括号,那么它就是从字符串到字符串数组的函数。
答案 0 :(得分:40)
我明白了。问题是函数类型文字的=>
本身只是语法糖而不想与[]
一起构成。
正如规范所说:
表单
的函数类型文字(ParamList)=> ReturnType
完全等同于对象类型文字
{(ParamList):ReturnType}
所以我想要的是:
var h : { (s: string): string; }[]
完整示例:
var f : (string) => string
f = x => '(' + x + ')';
var h : { (s: string): string; }[]
h = [];
h.push(f);
<强>更新强>:
从this changeset括号判断将在1.4中的类型声明中被允许,因此问题中的“第一个猜测”也是正确的:
var h: ((string) => string)[]
进一步更新这是1.4!
答案 1 :(得分:0)
根据你的研究,我写了一个小类PlanetGreeter / SayHello:`
/* PlanetGreeter */
class PlanetGreeter {
hello : { () : void; } [] = [];
planet_1 : string = "World";
planet_2 : string = "Mars";
planet_3 : string = "Venus";
planet_4 : string = "Uranus";
planet_5 : string = "Pluto";
constructor() {
this.hello.push( () => { this.greet(this.planet_1); } );
this.hello.push( () => { this.greet(this.planet_2); } );
this.hello.push( () => { this.greet(this.planet_3); } );
this.hello.push( () => { this.greet(this.planet_4); } );
this.hello.push( () => { this.greet(this.planet_5); } );
}
greet(a: string): void { alert("Hello " + a); }
greetRandomPlanet():void {
this.hello [ Math.floor( 5 * Math.random() ) ] ();
}
}
new PlanetGreeter().greetRandomPlanet();