返回介绍

lua_next

发布于 2019-08-25 13:16:53 字数 933 浏览 1244 评论 0 收藏 0

int lua_next (lua_State *L, int index);

Pops a key from the stack, and pushes a key-value pair from the table at the given index (the "next" pair after the given key). If there are no more elements in the table, then lua_next returns 0 (and pushes nothing).

A typical traversal looks like this:

 /* table is in the stack at index 't' */
 lua_pushnil(L); /* first key */
 while (lua_next(L, t) != 0) {
 /* 'key' is at index -2 and 'value' at index -1 */
 printf("%s - %s\n",
 lua_typename(L, lua_type(L, -2)), lua_typename(L, lua_type(L, -1)));
 lua_pop(L, 1); /* removes 'value'; keeps 'key' for next iteration */
 }

While traversing a table, do not call lua_tolstring directly on a key, unless you know that the key is actually a string. Recall that lua_tolstring changes the value at the given index; this confuses the next call to lua_next.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文