luabind 0.9.1迭代器总是只弹出最后一个对象

发布于 2024-11-24 22:57:51 字数 584 浏览 4 评论 0原文

全部。我使用 luabind 从 lua 脚本读取数组时遇到了一个奇怪的问题。

lua 脚本如下所示:

root = 
{
        id = 1,
        id = 2,
        id = 3
};

c++ 代码如下所示: luabind::object data_root = luabind::globals(L)["root"];

for (luabind::iterator i(data_root), end; i != end; ++i)
{
    luabind::object data = *i;
    unsigned int id = luabind::object_cast<unsigned int>(data);
    std::cout << "id:" << id << std::endl;
}

输出只有:

id:3

我想输出[root]的所有元素,但它只输出最后一个及以上。

谢谢你,杰森:)

all. I got a stranger problem by using luabind to read a array from lua script.

The lua script looks like this:

root = 
{
        id = 1,
        id = 2,
        id = 3
};

and the c++ code is looks like this:
luabind::object data_root = luabind::globals(L)["root"];

for (luabind::iterator i(data_root), end; i != end; ++i)
{
    luabind::object data = *i;
    unsigned int id = luabind::object_cast<unsigned int>(data);
    std::cout << "id:" << id << std::endl;
}

the output is only:

id:3

I want to output all the elements of the [root], but it only output the last one and over.

Thank You, Jason :)

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

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

发布评论

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

评论(1

疧_╮線 2024-12-01 22:57:51

root 没有多个元素,只有一个。您将键 id 分配给了三个不同的值,但该键仅存在一次,并且只有一个与之关联的值,因此您基本上只说过 root = { id = 3 }.

There aren't multiple elements of root, it only has one. You assigned the key id to three different values, but the key only exists once and only has one value associated with it, so you basically only ever said root = { id = 3 }.

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