a = ["L","Z","J"].collect{|x| puts x.succ} #=> M AA K
print a.class #=> Array
b = ["L","Z","J"].each{|x| puts x.succ} #=> M AA K
print b.class #=> Array
From the this code I don't know the difference
|
print 2,4,6,8 and returns [1,2,3,4] no matter what
returns [2,4,6,8] And In your code
a is an Array but its actually array of Nil's [nil,nil,nil] because (puts x.succ) returns nil. (Though it prints M AA K) And
also an Array. But its value is ["L","Z","J"], because it returns self. |
||||
|
|
|
|
|||
|
|
|
For more functional languages, you only do this sort of generic iteration if you can't do it any other way. Most of the time, either map or reduce will be more appropriate (collect and inject in ruby)
|
|||
|
|
|
The difference is what it returns. In your example above
From the ruby-doc, collect does the following:
Each always returns the original array. Makes sense? |
|||
|
|
|
Here are the two source code snippets, according to the docs...
So |
|||
|
|
|
Each is a method defined by all classes that include the Enumerable module. In Array class when a block is passed to |
|||
|
|
printinga.class,b.class? Printaandbinstead, and it will be clear. See Refactor's answer. I think you are confusing the effect of your two one-liners, which are the same, and the return value of them, which are different. – sawa Mar 18 '11 at 4:53pinstead ofprintwhen you want to see the content of an object. I forgot to mention that. Tryp aandp bin you code above. – sawa Mar 18 '11 at 5:00