lua_pushvalue(lua_state,-2); std::cout<<"show lua_pushvalue(lua_state,-2) stack:"<<std::endl; luaShowStackFromTop2Bot(lua_state); std::cout<<std::endl; lua_remove(lua_state,2); std::cout<<"show lua_remove(lua_state,2) stack:"<<std::endl; luaShowStackFromTop2Bot(lua_state...
void lua_pushvalue (lua_State *L, int index); Pushes a copy of the element at the given valid index onto the stack 如上所述, lua_pushvalue(L, -4) 并不是往栈顶插入元素-4, 而是把在栈中位置为-4的元素copy之后插入于栈顶中!!!
key) return "不存在的元素" end 在 C/C++ 中,可以使用 luaL_getmetafield() 函数来获取元表中的 __index 方法,如下所示: int index(lua_State* L) { lua_getmetatable(L, -2); lua_pushvalue(L, -2); lua_rawget(L, -2); if (lua_isnil(L, -1)) { // 元素不存在,调用 __index 方法...
//lua_pushvaluefunc(L *State)PushValue(indexint){ C.lua_pushvalue(L.s, C.int(index)) } 开发者ID:szll,项目名称:golua,代码行数:4,代码来源:lua.go // Pushes a copy of the element at the given valid index onto the stack.func(this *State)Pushvalue(indexint){ C.lua_pushvalue(this.lu...
在下文中一共展示了LuaValue::pushValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。 示例1: pushValue ▲点赞 9▼ voidpushValue(lua_State* luaState,constLuaValue& value){if(luaState != value.getLuaState())...
lua_pushvalue函数Notice 2013-04-15 16:17 −... Nick Yang 0 5964 Lua中调用C函数 2014-07-29 23:25 −Lua利用一个虚拟的堆栈来给C传递值或从C获取值。每当Lua调用C函数,都会获得一个新的堆栈,该堆栈初始包含所有的调用C函数所需要的参数值(Lua传给C函数的调用实参),并且C函数执行完毕后,会把返回...
lua.PushValue( -2);// get string librarylua.SetField( -2,"__index");// metatable.__index = stringlua.Pop(1);// pop metatable} 开发者ID:Jornason,项目名称:UniLua,代码行数:11,代码来源:LuaStrLib.cs 示例2: WidgetWriteOper ▲点赞 6▼ ...
t.pushValue(); lua_pushnil(_luaState); toNextElement(); } 开发者ID:DahBlount,项目名称:fs2open.github.com,代码行数:8,代码来源:LuaTable.cpp 示例2: setMetatable boolLuaTable::setMetatable(constLuaTable& table) {if(!table.getReference()->isValid()) {throwLuaException("Meta table reference...