Ruby Oneline Rescue

柔情痞子 提交于 2019-12-05 11:08:58

问题


I recently learned that you can use rescue on a line of code in case something goes wrong on that line (see http://www.rubyinside.com/21-ruby-tricks-902.html Tip #21). I have some code that used to look like this:

if obj['key'] && obj['key']['key2'] && obj['key']['key2']['name']
  name = obj['key']['key2']['name']
else
  name = ''
end

With the rescue method, I believe I can change that code into something like this:

name = obj['key']['key2']['name'] rescue ''

If a nil exception is thrown at any level of accessing the hash, it should get caught by the rescue and give me '', which is what I want. I could also choose to set name to nil if that were the desired behavior.

Is there any known danger in doing this? I ask because this seems too good to be true. I have so much ugly code that I'd love to get rid of that looks like the first code example.


回答1:


Reads good! But it will hit your performance. In my experience rescue is much slower when triggered and slightly slower when it's not. In all cases the if is faster. Other thing to consider, is that exceptions shouldn't be expected and you kind of are with this code. Having a hash so deeply nested might be a good smell that a refactoring is nede




回答2:


This specific example can now be achieved with Ruby 2.3's dig method.

name = obj.dig 'key', 'key2', 'name'

This will safely access obj['key']['key2']['name'], returning nil if any step fails.

(In general, it's usually advised to use exceptions only for real, unanticipated, errors, though it's understandable in an example like this if the syntax makes it cumbersome.)




回答3:


Kernel::raise may be worthwhile to look into also

if obj['key']['key2']['name']
  name = obj['key']['key2']['name']
else
  raise ''
end


来源:https://stackoverflow.com/questions/15396791/ruby-oneline-rescue

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!