CSC/ECE 517 Summer 2008/wiki1 6 jm: Difference between revisions
Jump to navigation
Jump to search
Line 25: | Line 25: | ||
|width="45%"|'''Java''' | |width="45%"|'''Java''' | ||
|- | |- | ||
|'''Create''' | |||
|<code>h = []</code> or | |||
<code>h = Array.new</code> | |||
|todo | |||
|- | |||
|'''Initialize''' | |||
|h = ["one",1,"two"] | |||
|todo | |||
{| | {| | ||
Revision as of 18:10, 6 June 2008
Introduction
Both Ruby and Java support arrays and hash tables
Hashes in Ruby
Arrays in Ruby
Creating Arrays in Ruby
Creating an array in Ruby is as simple as
a = []
Initializing an Array in Ruby
a = ["one",45,"hello"]
Array Comparison
Array Function | Ruby | Java | |||||||||||||||||||||||||
Create | h = [] or
|
todo | |||||||||||||||||||||||||
Initialize | h = ["one",1,"two"] | todo
Hashtable Comparison
External Links |