摘要:
base.lua脚本 阅读全文
摘要:
require("luacom"); require("lc"); --创建excel对象 local excel = luacom.CreateObject("Excel.Application"); --创建新的实例 excel.Visible = false; local book =excel.Workbooks:Add(); --读第一个工作表 local sheet = bo... 阅读全文
摘要:
Student = {}; Student.__index = Student; function Student:new(name, age) local temp = {}; setmetatable(temp, Student); temp.name = name; temp.age = age; return temp; end functi... 阅读全文