加载使用 YAML 序列化的对象时调用初始化

发布于 2024-08-12 18:18:40 字数 140 浏览 3 评论 0原文

使用 YAML.load_file 时是否可以强制 Ruby 调用初始化方法?我想调用该方法以便为我未序列化的实例变量提供值。我知道我可以将代码分解为一个单独的方法,并在调用 YAML.load_file 之后调用该方法,但我想知道是否有更优雅的方法来处理这个问题。

Is it possible to force Ruby to call an initialize method when using YAML.load_file? I want to call the method in order to provide values for instance variables I do not serialize. I know I can factor the code into a separate method and call that method after calling YAML.load_file, but I was wondering if there was a more elegant way to handle this issue.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光是把杀猪刀 2024-08-19 18:18:40

我认为你不能。由于您将添加的代码确实特定于要反序列化的类,因此您应该考虑在类中添加该功能。例如,让 Foo 为您要反序列化的类,您可以添加一个类方法,例如:

class Foo
  def self.from_yaml( yaml )
    foo = YAML::load( yaml )
    # edit the foo object here
    foo
  end
end

myFoo = Foo.from_yaml( "myFoo.yaml" )

I don't think you can. Since the code you will add is really specific to the class being deserialized, you should consider adding the feature in the class. For instance, let Foo be the class you want to deserialize, you can add a class method such as:

class Foo
  def self.from_yaml( yaml )
    foo = YAML::load( yaml )
    # edit the foo object here
    foo
  end
end

myFoo = Foo.from_yaml( "myFoo.yaml" )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文