Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚开始玩 Lua。一切正常,但我遇到了问题。当我使用"lua_register"时,我必须传递一个静态函数作为第三个参数。但问题是,我想从该静态函数中调用一个成员函数。但是编译器说,这是不可能的。
"lua_register"
你知道怎么做吗?
要么将成员函数设为静态,要么将类的实例传递给您的静态函数并调用其成员。