65,208
社区成员
发帖
与我相关
我的任务
分享CPerson *s = (CPerson*)luaL_checkudata(L, 1, "person");
luaL_argcheck(L, s != NULL, 1, "invalid user data");
//luaL_checktype(L, -1, LUA_TNUMBER);
//int age = lua_tonumber(L, -1);
//lua_settop(L, 0);
TestStr* age = s->GetTest();
lua_pushlightuserdata(L, age);
luaL_setmetatable(L, "teststr");
return 1;#include <time.h>
#include <stdlib.h>
#include <windows.h>
int main() {
int a,b[11];//本来是b[10],为判断哪句越界,故意声明为b[11]
srand((unsigned int)time(NULL));//按两次F11,等黄色右箭头指向本行时,调试、新建断点、新建数据断点,地址:&b[10],字节计数:4,确定。
while (1) {//按F5,会停在下面某句,此时a的值为10,b[10]已经被修改为对应0..4之一。
b[(a=rand()%11)]=0;
Sleep(100);
b[(a=rand()%11)]=1;
Sleep(100);
b[(a=rand()%11)]=2;
Sleep(100);
b[(a=rand()%11)]=3;
Sleep(100);
b[(a=rand()%11)]=4;
Sleep(100);
}
return 0;
}