加载使用 YAML 序列化的对象时调用初始化
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你不能。由于您将添加的代码确实特定于要反序列化的类,因此您应该考虑在类中添加该功能。例如,让
Foo
为您要反序列化的类,您可以添加一个类方法,例如: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: