如何在 C++ 中创建 Lua 表,并将其传递给 Lua 函数?

发布于 2024-07-12 11:47:29 字数 114 浏览 5 评论 0原文

在 C++ 中,我有一个 map,其中包含未知数量的条目。 如何将其传递给 Lua 函数,以便 Lua 函数可以将数据用作表格?

In C++, I have a map<string, string>, containing an unknown number of entries. How can I pass this to a Lua function, so that the Lua function can use the data as a table?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

水中月 2024-07-19 11:47:29

如果你想要一个真正的lua表:

lua_newtable(L);
int top = lua_gettop(L);

for (std::map::iterator it = mymap.begin(); it != mymap.end(); ++it) {
    const char* key = it->first.c_str();
    const char* value = it->second.c_str();
    lua_pushlstring(L, key, it->first.size());
    lua_pushlstring(L, value, it->second.size());
    lua_settable(L, top);
}

用你的地图的正确类型替换..

if you want a real lua table:

lua_newtable(L);
int top = lua_gettop(L);

for (std::map::iterator it = mymap.begin(); it != mymap.end(); ++it) {
    const char* key = it->first.c_str();
    const char* value = it->second.c_str();
    lua_pushlstring(L, key, it->first.size());
    lua_pushlstring(L, value, it->second.size());
    lua_settable(L, top);
}

with the right types for your map substituted in..

影子的影子 2024-07-19 11:47:29

几个选项...

  1. 将映射复制到新的 Lua 表中,并传递 Lua 表。

  2. 创建一个代理表,通过元表的来指导读写__index__newindex 元方法

当然,(1) 的缺点是所有复制。

(2) 的缺点是 pairs() 无法在代理表上工作。

有关 Lua 通用 pairs 修复的讨论是 wiki此邮件列表主题Lua 5.2 预计会出现通用

A couple options...

  1. Copy the map into a new Lua table, and pass the Lua table.

  2. Create a proxy table that directs reads and writes through a metatable's __index and __newindex metamethods

The drawback to (1) is all the copying, of course.

The drawback to (2) is that pairs() won't work on the proxy table

A discussion of fixes to Lua for generalized pairs is in the wiki and this mailing list thread. Generalized pairs is expected for Lua 5.2

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文