gpt4 book ai didi

ruby - 在 Ruby 中需要全有或全无?

转载 作者:数据小太阳 更新时间:2023-10-29 08:35:02 24 4
gpt4 key购买 nike

在 ruby​​ 中是否有一个版本的 require 要么加载整个文件,要么什么都不加载?

问题是 require 从顶部开始加载,如果它遇到问题,你最终会得到未完成的定义,例如,即使 module,下面的代码仍然会加载一个 class A C 未定义:

class B
include C
end

在我的特定情况下,我有一大组相互依赖的文件,以及一个加载这些文件的加载器。为了举例说明,我将文件集简单地分为 4 个文件(a.rb、b.rb、c.rb 和 w.rb)。以下是这些文件的列表:

# In file a.rb
class A
@foo = []
@foo.push("in A")

def self.inherited(subclass)
foo = @foo.dup
subclass.instance_eval do
@foo = foo
end
end

def self.get_foo
@foo
end
end

# In file b.rb
class B < A
include C # if C is not already defined, the following line will not get executed although B will be defined.
@foo.push("in B")
end

# In file c.rb
module C
end

# In file w.rb
class W < B
@foo.push("in W")
end

加载器通过获取当前文件的列表来工作,尝试一个一个地要求它们。如果任何文件失败,它将保留在列表中并稍后重试。代码是这样的:(为简单起见删除了很多细节)

# In file loader.rb
files = Dir["*.rb"].reject { |f| f =~ /loader/ }
files.sort! # just for the purpose of the example, to make them load in an order that causes the problem
files.reject! { |f| require(f) rescue nil } while files.size > 0

我最终会想让它加载A,然后发现B不能单独加载(所以跳过),然后加载C,然后发现W还不能加载(所以跳过),然后回到B然后W。

在这种情况下,p W.get_foo 的输出将是 ["in A", "in B", "in W"],这就是我要。

实际发生的是它加载 A,然后部分加载 B,然后是 C,然后当涉及到 W 时,它认为它可以加载它(因为 B 已经定义)。这会在不正确的时间触发 self.inherited 代码,并复制一个尚未准备好的 @foo 值,给出 p W.get_foo 的输出 错误地是 ["in A", "in W"]

有一个全有或全无的 require 将解决它。

有什么想法吗?

最佳答案

如果一个文件依赖于另一个文件,则该文件本身应该需要依赖项。例如,b.rb 应该如下所示:

require 'a'
require 'c'

class B < A
include C # if C is not already defined, the following line will not get executed although B will be defined.
@foo.push("in B")
end

w.rb应该是这样的:

require 'b'

class W < B
@foo.push("in W")
end

之后,外部加载顺序不再重要,“全有或全无” 也不再需要方法。当 b 被加载时,它首先会看到 a 的 require 并意识到它已经被加载,然后它会 require c 因为它实现了它还没有加载它。当再次需要 c 时,它将从外循环中跳过它。

注意:请注意您的 $LOAD_PATH 和传递给 require 的路径。 Ruby 仅在路径相同时识别重复需求。最好使用相对路径(相对于 $LOAD_PATH 中的路径)而不是绝对路径;否则,一个文件可能会被加载两次。

关于ruby - 在 Ruby 中需要全有或全无?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1113532/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com