Ruby 中是否有相当于 to_yaml_properties 的检查功能?

发布于 2024-10-19 16:27:15 字数 215 浏览 4 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

夏花。依旧 2024-10-26 16:27:15

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 redefine Kernel#p (or add your own shortcut) to use all instance variables minus whatever ones might be excluded.

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