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 函数调用了我的 C++ 函数,如果 C++ 函数由 luabind 在脚本中导出,使用 MVS 中的调用堆栈?
您可以使用函数 lua_getstack 和 lua_getinfo 来检索各种有用的调试信息,包括调用堆栈。