In Ruby, what's the difference between {} and []?
{} seems to be used for both code blocks and hashes.
are [] only for arrays?
The documention isn't very clear.
|
1
|
|||||
|
|
|
It depends on the context: 1.When on their own, or assigning to a variable,
2.
See the ruby library docs for that last example 3.This is probably the most tricky one - e.g.
|
|||
|
|
|
|
note that you can define the [] method for your own classes class A def [](position) # do something end end |
||
|
|
|
|
Another, not so obvious, usage of [] is as a synonym for Proc#call and Method#call. This might be a little confusing the first time you encounter it. I guess the rational behind it is that it makes it look more like a normal function call. E.g.
|
||
|
|
|
The square brackets [ ] are used to initialize arrays. The documentation for initializer case of [ ] is in
The curly brackets { } are used to initialize hashes. The documentation for initializer case of { } is in
The square brackets are also commonly used as a method in many core ruby classes, like Array, Hash, String, and others. You can access a list of all classes that have method "[ ]" defined with
most methods also have a "[ ]=" method that allows to assign things, for example:
Curly brackets can also be used instead of "do ... end" on blocks, as "{ ... }". Another case where you can see square brackets or curly brackets used - is in the special initializers where any symbol can be used, like:
|
||
|
|
|
|
a few examples:
|
||
|
|
|
|
Yes, [1,2,3] creates an array with the integers 1, 2, and 3 mapped to [0], [1], and [2]/ If I remember correctly, you can define arrays with the curly braces if you use integers for keys instead of strings or symbols. I could be wrong about that, so double check. The IRB is great for practicing a lot of this basic syntax stuff--it gives good feedback. EDIT: I just had a chance to fire up the IRB, and you don't actually get an Array when using numeric keys. I checked by trying to add an element with the '<<' method, and I received a NoMethodError. |
|||
|
|
|
|
Broadly speaking, you're correct. As well as hashes, the general style is that curly braces {} are often used for blocks that can fit all onto one line, instead of using do/end across several lines. Square brackets [] are used as class methods in lots of Ruby classes, including String, BigNum, Dir and confusingly enough, Hash. So:
is just as valid as:
|
||
|
|