Lua中require,dofile,loadfile,dostring,loadstring,loadlib,load之间的区别
重点掌握require,dofile,loadfile,其他的了解即可。一、require1.功能:载入文件并执行代码块,对于相同的文件只执行一次2.调用:require(“filename”)注:寻找文件的路径在package.path中,print(package.path)即可得到。二、dofile1.功能:载入文件并执行代码块,对于相同的文件每次都会执行2.调用:dofile("filen