Can I have an array which has a nil as a value in it?
For example, [1,3,nil,23]
I have an array in which I assign nil
array = nil then
I want to iterate thru it but I can't. The .each method fails saying nil class. Is it possible to do this?
|
Can I have an array which has a nil as a value in it? For example, I have an array in which I assign nil
I want to iterate thru it but I can't. The |
||||
|
|
|
Use:
Example:
> a = nil
=> nil
> a.each{|x|puts x}
NoMethodError: undefined method `each' for nil:NilClass
from (irb):3
from :0
> a= [nil]
=> [nil]
> a.each{|x|puts x}
nil
=> [nil]
|
|||
|
|
|
I believe your problem lies in when you "assign nil" to the array
Is this something like what you tried doing? In this case you do not assign |
|||
|
|
|
Sure you can. You are probably trying to do something with the
|
|||
|
|
|
use Enumerable#map
note that even though the return is nil for each item in the array, the original array is as it was. if you do something to operate on each item in the array, it will return the value of each operation. you can get rid of nils buy compacting it.
|
||||
|
|
|
I think you're confusing adding an item to an array with assigning a value of nil to a variable. Add an item to (the end of) an array (two ways):
I'm assuming that the array already exists. If it doesn't, you can create it with On the other hand, You may be thinking of assignment with an index position, but |
||||
|
|