
Lua_调用 C++函数:传递普通参数
lua文件中传参调用函数 main.lua ctest("hello",123,false) C++函数中获取参数并处理 CTest(lua_State * L) { size_t len; co...
lua文件中传参调用函数 main.lua ctest("hello",123,false) C++函数中获取参数并处理 CTest(lua_State * L) { size_t len; co...
准备工作 引入Lua库 导入使用到的相关头文件 #include <iostream> extern "C" { include <lua.h> include <l...
if 语句 if a < 0 then print("aaa") end if else 语句 if a < 0 then print("aaa") else pr...
准备工作 下载lua源码 编译出DLL 创建C++程序 引入相关lua头文件 rxtern "C" #include <lua.h> #include <lauxlib.h>...
保留字 and break do if else elseif end false goto for function in local nil not or repeat return then true unti...
类型和值 Lua是一种动态类型语言,这种语言中, 没有类型定义,每个值都带有其自身的类型信息 基本数据类型 nil 与其他所有值进行区分 表示无效值的情况 全局变量在第一次被赋值之前的默认值就是nil,而将nil赋值...