Home
Ruby
ActiveRecord
Array
CGI
Class
Collections
Database
Date
Design Patterns
Development
File Directory
GUI
Hash
Language Basics
Method
Network
Number
Rails
Range
Reflection
Statement
String
Threads
Time
Tk
Unit Test
Windows Platform
XML
Menu
Element Assignment : Hash Creation « Hash « Ruby
Ruby
Hash
Hash Creation
Element Assignment
h = {
"a"
=> 100,
"b"
=> 200 } h[
"a"
] = 9 h[
"c"
] = 4 puts h
Related examples in the same category
1.
A hash ( associative array or a dictionary) is an array holding a collection of data,
2.
Hashes use braces instead of brackets to let the Ruby interpreter know what is being created.
3.
Hash has a class method [], which is called in either one of two ways: with a comma separating the pairs
4.
Instead of integers, you could use strings for the keys
5.
The hash definition is enclosed in curly braces, whereas an array is defined in square brackets.
6.
you can store numbers in hashes
7.
Using Hashes
8.
Creating a Hash with a Default Value
9.
Create a hash with default value
10.
creates a new default object each time