lambda 中的变量参数作为函数指针



我想使用 luabridge 将函数从一个Lua_State复制到另一个

Luabridge 提供了一个名为 addFunction(const char * name,FP fp) 的函数和一个名为 getGlobal(lua_State* L,const char*) 的函数,该函数返回具有重载运算符的 LuaRef 类型的对象。我正在使用多映射来存储要复制的函数的名称。

函数addFunction()不支持使用指向类的指针,因此我不能直接传递getGlobal().operator()

    //get all functions that match the Criteria
    std::pair<acc_map_iter, acc_map_iter> range = sec_map->equal_range(acl);
    //Add them to the first State
    std::for_each(range.first, range.second, [&](acc_map_iter iter){
        script->compilerContext->addFunction(iter->second.c_str(), [&](/*args...?*/)
        {
            return luabridge::getGlobal(sec_state, iter->second.c_str()).operator(/*args...?*/);
        });
    });

我可以以某种方式使lambda接受来自addFunction()的多个参数吗.有技巧还是根本不可能?

我不确定我遇到了问题,但似乎你需要一个通用的 lambda。
是的,你可以拥有它们。下面是一个最小的工作示例:

#include<utility>
struct S {
    void g(int) { }
    template<typename... Args>
    void f(Args&&... args) {
        auto fn = [this](auto&&... args){
            g(std::forward<decltype(args)>(args)...);
        };
        fn(std::forward<Args>(args)...);
    }
};
int main() {
    S s;
    s.f(42);
}

这是一个丑陋的陈述,就像涉及提出论点的decltype一样。

相关内容

  • 没有找到相关文章

最新更新