gpt4 book ai didi

java - LuaJ - 在 Java 中创建 Lua 函数

转载 作者:行者123 更新时间:2023-12-01 10:33:35 24 4
gpt4 key购买 nike

有没有办法在Java中创建一个Lua函数并将其传递给Lua以将其分配给变量?

例如:

  • 在我的 Java 类中:

    private class doSomething extends ZeroArgFunction {
    @Override
    public LuaValue call() {
    return "function myFunction() print ('Hello from the other side!'); end" //it is just an example
    }
    }
  • 在我的 Lua 脚本中:

    myVar = myHandler.doSomething();
    myVar();

在这种情况下,输出将是:“Hello from the other side!”

最佳答案

尝试使用 Globals.load() 从脚本字符串构造函数,并使用 LuaValue.set() 在全局中设置值:

static Globals globals = JsePlatform.standardGlobals();

public static class DoSomething extends ZeroArgFunction {
@Override
public LuaValue call() {
// Return a function compiled from an in-line script
return globals.load("print 'hello from the other side!'");
}
}

public static void main(String[] args) throws Exception {
// Load the DoSomething function into the globals
globals.set("myHandler", new LuaTable());
globals.get("myHandler").set("doSomething", new DoSomething());

// Run the function
String script =
"myVar = myHandler.doSomething();"+
"myVar()";
LuaValue chunk = globals.load(script);
chunk.call();
}

关于java - LuaJ - 在 Java 中创建 Lua 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34945883/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com