我目前正在使用以下代码从表中获取值(cstring = const char*):
template<>
cstring luaTable::get(cstring name) {
prep_get(name); // puts table[name] at -1 in stack
cstring result;
if(!lua_isstring(L, -1)) {
report(name, "is not a string");
result = "";
}
else {
result = lua_tostring(L, -1);
}
lua_pop(L, 1);
return result;
}
void luaTable::prep_get(cstring name) {
lua_pushstring(L, name); // name at -1, table at -2
lua_gettable(L, -2);
// table[name] is now at position -1 in stack
}
这非常适用于表格表格table = {a=10, b=2}
。如何修改它以从没有键的表中获取值,例如table = {10, 2}
?
我确定我错过了一些简单的东西,但似乎找不到答案。
在此先感谢,本
编辑:添加了一些流行音乐