|
Adding a member to a Hash in Ruby
In Ruby, you must initialise your variables - in other words, you cannot use the content of a variable that doesn't exist and have the language assume it will be 0, as happened with Perl.
So if - for example - you're using a Hash to keep tabs of a number of counters, you can't just +=1 members and have them automatically created if the dont already exist - you get an exception:
irb(main):001:0> demo = {}
=> {}
irb(main):002:0> demo["Graham"] = 25
=> 25
irb(main):003:0> demo["Graham"] += 1
=> 26
irb(main):004:0> demo["Lisa"] += 1
NameError: undefined method `+' for nil
from (irb):4
The fetch method on a Hash allows you to fetch a value if one exists, but return a default if the element you're looking for is undefined and that's a really effective way of initialising new counters to 0:
irb(main):005:0> demo["Graham"] = demo.fetch("Graham",0) + 1
=> 27
irb(main):006:0> demo["Lisa"] = demo.fetch("Lisa",0) + 1
=> 1
irb(main):007:0>
In some circumstances, the fetch behaviour is what you'll want .... but in others, it's more likely to be better to process the circumstance via an exception with a rescue clause. (written 2006-12-16 04:49:00)
Associated topics are indexed under R107 - Collections (Arrays and Hashes) in Ruby [2621] Ruby collections and strings - some new examples - (2010-02-03) [2618] What are Ruby Symbols? - (2010-02-02) [2606] Sorting arrays and hashes in Ruby - (2010-01-30) [2291] Collection objects (array and hash) in Ruby - (2009-07-16)
Some other Articles
Ruby's case - no breakTraining on Cascading Style SheetsPositioning with Cascading Style SheetsEnthusiastic, but ....Adding a member to a Hash in RubyRuby - Totally TopicalMelksham QuizYou should think you're first in a hotel roomRuby v Perl - interpollating variablesputs - opposite of chomp in Ruby
|
2675 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|