ruby 中的 pp 或 to_yaml 深度有限
我可以限制 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,没有简单的方法可以做到这一点。几乎每个 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.