将函数作为参数传递给Haxe

时间:2012-12-24 21:13:55

标签: haxe

在Haxe编程语言中,是否可以将函数作为参数传递(如在JavaScript中?)

例如,以下代码在Haxe中是否有效?

function a(){
    trace("This function is being used as a parameter!");
}

function b(theFunction){
    theFunction();
}

b(a); //is this equivalent to a(); ?

2 个答案:

答案 0 :(得分:14)

这绝对是可能的,并且是标准库中使用的模式,尤其是在Lambda类中:

class Test {
  static function main(){
    var arr = [0,1,2,3,4,5,6,7,8,9,10];
    var newArr = Lambda.filter(arr, function (num) { 
      return num % 2 == 0; 
    });
    for (i in newArr)
    {
      trace (i);
    }
  }
}

(见http://try.haxe.org/#C9dF3

要定义自己的方法,将函数作为参数,请使用(param1Type)->(param2Type)->(returnType)语法:

function test1(myFn:String->Void) { myFn("hi"); }
test1(function (str) { trace(str); });

function test2(myFn:String->String) { var newStr = myFn("hi"); }
test2(function (str) { return str.toUpperCase(); });

function test3(myFn:Int->String->Array<Int>->Void) { myFn(3, "Jason", [1,2,3,4]); }
test3(function(num:Int, name:String, items:Array<Int>) { ... });

答案 1 :(得分:9)

请亲自试试:)

http://try.haxe.org/#CFBb3