ruby 中的 pp 或 to_yaml 深度有限

发布于 2024-10-10 15:05:03 字数 60 浏览 1 评论 0原文

我可以限制 Ruby 中 PP.pp 或 to_yaml 的递归深度吗? 如果没有,我可以使用其他功能吗?

Can I limit the recursion depth of PP.pp or to_yaml in Ruby?
If not is there another function I can use?

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

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

发布评论

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

评论(1

温柔一刀 2024-10-17 15:05:03

据我所知,没有简单的方法可以做到这一点。几乎每个 Ruby 对象都实现的 #inspect 方法不受深度限制。

您必须自己实现它,例如您可以构建一个递归方法,该方法采用一个对象和一个整数值来表示当前深度。主要问题是,您需要以不同的方式处理每个预期类的对象的输出以模拟其特定的 #inspect 输出,因为您无法使用其原始的 #inspect 方法。

As far as I know there is no easy way to do this. The #inspect method which almost every Ruby object implements cannot be limited by depth.

You would have to implement that by yourself, for example you could build a recursive method that takes the an object and an Integer value to represent the current depth. The main problem is, that you need to handle output for objects of each expected class differently to simulate their specific #inspect output, as you can't use their original #inspect method.

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