1 Star 2 Fork 0

Eden/Notes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Lua 文件读取和写入.md 1.72 KB
一键复制 编辑 原始数据 按行查看 历史

Lua 文件读取和写入

--[[
-- C:\\Users\\eden\\Desktop\\LuaLearning\\demo\\data 中的内容
Entry{
	author = "eden1" ,
	title = "bookname1" ,
	publishing = "publishing company1" ,
	year = "1997"
}

Entry{
	author = "eden2" ,
	title = "bookname2" ,
	publishing = "publishing company2" ,
	year = "1997"
}

Entry{
	author = "eden3" ,
	title = "bookname3" ,
	publishing = "publishing company3" ,
	year = "1997"
}

Entry{
	author = "eden4" ,
	title = "bookname4" ,
	publishing = "publishing company4" ,
	year = "1997"
}
--]]

-- Entry{ <code> } 与 Entry({<code>}) 完全相同的

do
local count = 0
	function Entry(...) count = count + 1 end

	dofile("C:\\Users\\huangMP.DESKTOP-88ENV6P\\Desktop\\LuaLearning\\demo\\data")

	print("number of entries : " .. count)

	local authors = {}   -- 作者姓名集合
	function Entry(b) authors[b[1]] = true end
	dofile("C:\\Users\\DESKTOP-88ENV6P\\Desktop\\LuaLearning\\demo\\data")
	for name in pairs(authors) do
		print(name)
	end

end

-- 采用键值对的方式保存

--[[
-- C:\\Users\\DESKTOP-88ENV6P\\Desktop\\LuaLearning\\demo\\data2 中的内容
Entry{
	author = "eden1" ,
	title = "bookname1" ,
	publishing = "publishing company1" ,
	year = "1997"
}

Entry{
	author = "eden2" ,
	title = "bookname2" ,
	publishing = "publishing company2" ,
	year = "1997"
}

Entry{
	author = "eden3" ,
	title = "bookname3" ,
	publishing = "publishing company3" ,
	year = "1997"
}

Entry{
	author = "eden4" ,
	title = "bookname4" ,
	publishing = "publishing company4" ,
	year = "1997"
}
--]]

do
	local authors = {}   -- 作者姓名集合
	function Entry(b) authors[b.author] = true end
	dofile("C:\\Users\\DESKTOP-88ENV6P\\Desktop\\LuaLearning\\demo\\data2")
	for name in pairs(authors) do
		print(name)
	end
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/eden2f/notes.git
git@gitee.com:eden2f/notes.git
eden2f
notes
Notes
master

搜索帮助

Cb406eda 1850385 E526c682 1850385