首页投稿(暂停使用,暂停投稿)程序员Lua

Lua api(六) lua_type/lua_typename

2016-07-03  本文已影响1344人  AlbertS

前言#

前面几篇都是讲c/c++代码对lua文件中数据的读取和设置,这一篇我们来看看对数据类型的判断,这是非常有用的,便于我们针对于不同的类型进行不同的操作,比如打印工作,对于数值类型的数据我们可以使用%d打印,而对于字符串类型的数据我们可以使用%s打印,这些判断的前提就是得知道数据是什么类型的。

内容#


lua_type##


lua_typename##


Usage##

-- 定义一个全局table
information =
{
    name = "AlbertS",
    age = 22,
    married = false,
}

-- 定义一个打印函数
function func_printtable()
    print("\nlua --> table elemet:");
    for index,value in pairs(information) do
        print("information."..index.." = ".. tostring(value));
    end
end
    lua_State *L = lua_open();
    luaL_openlibs(L);

    luaL_dofile(L,"typetest.lua");      // 加载执行lua文件
    lua_getglobal(L,"information");     // 将全局表压入栈

    lua_pushstring(L, "name");          // 将要取的变量名压入栈
    lua_gettable(L, -2);                // 取information.name的值  
    int luatype = lua_type(L, -1);      // 取information.name的类型 -->lua_type用法
    if(LUA_TNONE == luatype)
    {
        printf("\nc++ --> information.name type error\n");
    }
    else
    {
        
        printf("\nc++ --> information.name type is %s\n", 
            lua_typename(L, luatype));  // -->lua_typename用法
    }
    lua_pop(L,1);   


    lua_pushstring(L, "age");           // 将要取的变量名压入栈
    lua_gettable(L, -2);                // 取information.age的值   
    luatype = lua_type(L, -1);          // 取information.age的类型-->lua_type用法
    if(LUA_TNONE == luatype)
    {
        printf("\nc++ --> information.age type error\n");
    }
    else
    {
        
        printf("\nc++ --> information.age type is %s\n", 
            lua_typename(L, luatype));  // -->lua_typename用法
    }
    lua_pop(L,1);   


    lua_pushstring(L, "married");   // 将要取的变量名压入栈
    lua_gettable(L, -2);            // 取information.married的值   
    luatype = lua_type(L, -1);      // 取information.married的类型-->lua_type用法
    if(LUA_TNONE == luatype)
    {
        printf("\nc++ --> information.married type error\n");
    }
    else
    {
        // -->lua_typename用法
        printf("\nc++ --> information.married type is %s\n", 
            lua_typename(L, luatype));
    }
    lua_pop(L,1);

    lua_getglobal(L, "func_printtable");// 查看一下table的内容
    lua_pcall(L, 0, 0, 0);

    lua_close(L);                       //关闭lua环境  
type.png

结论#

上一篇 下一篇

猜你喜欢

热点阅读