Training, Open Source computer languages

PerlPythonMySQLTclRubyC & C++LuaJavaTomcatPHPhttpdLinux

Search our site for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
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

Back to
Ruby - Totally Topical
Previous and next
or
Horse's mouth home
Forward to
Enthusiastic, but ....
Some other Articles
Ruby's case - no break
Training on Cascading Style Sheets
Positioning with Cascading Style Sheets
Enthusiastic, but ....
Adding a member to a Hash in Ruby
Ruby - Totally Topical
Melksham Quiz
You should think you're first in a hotel room
Ruby v Perl - interpollating variables
puts - opposite of chomp in Ruby
1893 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 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).

© WELL HOUSE CONSULTANTS LTD., 2008: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 0800 043 8225 or 01225 708225 • FAX: 0845 8382 405 or 01225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho