Ruby 跟踪实例变量
如何检查实例变量值是否发生变化?
对于全局变量有一个trace_var方法 http://apidock.com/ruby/Kernel/trace_var
但我没有找到任何信息如何使用实例变量(或一类)来做到这一点。
我没有使用Rails。
红宝石 1.9.2。
How to check if instance variable value have changed?
For global variable there is a trace_var method
http://apidock.com/ruby/Kernel/trace_var
But I didn't found any information how to do that with instance variables(or class one).
I didn't use Rails.
Ruby 1.9.2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法可能是避免直接访问和操作实例变量,而是通过
attr_accessor
样式接口。这使您能够执行以下操作:
The best approach might be to avoid accessing and manipulating the instance variable directly and instead go through an
attr_accessor
style interface.This gives you the ability to do things like this: