Ruby 中是否有相当于 to_yaml_properties 的检查功能?
Object#to_yaml_properties
是一种可用于列出要序列化为 YAML 的实例变量的方法,而无需重新实现整个序列化过程。如果你想排除某些实例变量,你可以使用 super
然后过滤掉你不需要的变量。
是否有等效的方法允许您在调用 Object#inspect
时仅列出某些变量,或者我必须重新实现整个方法?
Object#to_yaml_properties
is a method you can use to list which instance variables you want serialized to YAML without having to re-implement the entire serialization process. If you want to exclude certain instance variables, you could use super
and then filter out the ones you don't want.
Is there an equivalent method that allows you to only list certain variables when calling Object#inspect
, or would I have to re-implement the entire method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
vanilla Ruby 中没有这样的机制。
从好的方面来说,您可以实现它,然后在
MyClass#inspect
的重新定义中使用它。您不必为每个类完成所有工作,只需创建一个允许您设置检查的类级方法。或者,您可以添加自己的
Object#limited_inspect
并重新定义Kernel#p
(或添加您自己的快捷方式)以使用所有实例变量减去可能排除的任何变量。There is no such mechanism in vanilla Ruby.
On the plus side, you could implement it and then use it in your redefinition of
MyClass#inspect
. You don't have to do all the work per class, just create a class-level method that allows you to set the inspect.Or you could add your own
Object#limited_inspect
and redefineKernel#p
(or add your own shortcut) to use all instance variables minus whatever ones might be excluded.