如何或可以将带有参数作为参数的函数传递给lua中的函数?

时间:2019-12-07 17:42:40

标签: lua computercraft

我不是直接运行lua,而是CC-Tweaks ComputerCraft版本。这是我要完成的一个例子。它不能按原样工作。

*已编辑。我有一个函数要传递,但没有一个带有自变量的函数。

function helloworld(arg)

    print(arg)

end

function frepeat(command)

    for i=1,10 do

        command()

    end

end

frepeat(helloworld("hello"))

3 个答案:

答案 0 :(得分:2)

frepeat(helloworld("hello"))

不会像helloworld那样传递frepeat(helloworld)函数,因为它始终表示其外观:调用一次helloworld,然后将该结果传递给frepeat。 / p>

您需要定义一个函数来执行您想要传递的功能。但是,针对一次性函数执行此操作的一种简单方法是函数表达式:

frepeat( function () helloworld("hello") end )

这里的表达式function () helloworld("hello") end导致一个没有名称的函数,每次调用该函数时,其主体都会将"hello"传递给helloworld

答案 1 :(得分:2)

尝试以下代码:

function helloworld(arg)
    print(arg)
end

function frepeat(command,arg)
    for i=1,10 do
        command(arg)
    end
end

frepeat(helloworld,"hello")

如果需要多个参数,请使用...代替arg

答案 2 :(得分:1)

“重复”是lua中的保留字。试试这个:

FILE *fp = . . . ;
char *buf = malloc(n);

fread(buf, n, 1, fp);

fprintf(stderr, "%s", isValid(buf) ? "Valid" : "Invalid");