在 Lua 中只归档一次
我想知道是否有一种方法可以只执行一次 lua 文件,并且后续尝试执行该 lua 文件将导致无操作。
我已经考虑过做一些类似于 C++ header 的 #if/else/endif 技巧的事情。我想知道是否有一个标准方法来实现这一点。
詹姆斯
I was wondering if there's a way to do a lua file only once and have any subsequent attempts to do that lua file will result in a no-op.
I've already thought about doing something akin to C++ header's #if/else/endif trick. I'm wondering if there's a standard way to implement this.
James
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好吧,
require
几乎可以做到这一点。well,
require
pretty much does that.require 的唯一问题是它适用于模块名称,而不是文件名。特别是, require 不处理带有路径的名称(尽管它确实使用 package.path 和 package.cpath 来定位文件系统中的模块)。
如果您想处理带有路径的名称,您可以编写一个简单的 dofile 包装器,如下所示:
The only problem with require is that it works on module names, not file names. In particular, require does not handle names with paths (although it does use package.path and package.cpath to locate modules in the file system).
If you want to handle names with paths you can write a simple wrapper to dofile as follows:
基于lhf的答案,但是利用
package
,您也可以执行一次:然后使用:
再次获取预加载的包。但这有点欺负人了...
based on lhf's answer, but utilising
package
, you can also do this once:and then use:
to get the preloaded package again. but that's a bit abusive...