In one of the Ruby koans, there's the following problem:

def test_slicing_arrays
  array = [:peanut, :butter, :and, :jelly]

  assert_equal _, array[0,1]
  assert_equal _, array[0,2]
  assert_equal _, array[2,2]
  assert_equal _, array[2,20]
  assert_equal _, array[4,0]
  assert_equal _, array[4,100]
  assert_equal _, array[5,0]
end

You must fill in the _ with the correct statement. The first four asserts work how I'd expect them to, but I'm confused about the last three.

array[4,0] gives back [], as does array[4,100]. At this point I figured that ranges outside of the array (greater than 3 in this case) simply return an empty array.

But array[5,0] returns nil which has now confused me completely.

Can anyone explain this behaviour?

link|improve this question

Wish I had found that question when searching – thanks. – Martin Jan 7 at 19:48
It was the second on the list of related questions that stackoverflow provided when you entered the question (see the right sidebar of the page). Anyway, glad I could help :) – nimrodm Jan 7 at 21:10
feedback

2 Answers

up vote 1 down vote accepted

Ruby is not a static language, forcing you to pre-declare the size of the array. It expands arrays as you assign to a particular element.

Normally we'd append to the end of the array:

array = []       # => []
array << 1       # => [1]
array += [2]     # => [1, 2]
array.push(3)    # => [1, 2, 3]

Or push onto the front of it:

array.unshift(0) # => [0, 1, 2, 3]

to add elements, which keeps the array accumulating the values without gaps.

We can do it randomly too, which can be useful:

array[10] = 10 # => 10
array          # => [0, 1, 2, 3, nil, nil, nil, nil, nil, nil, 10]

And that's what you've encountered.


You can predefine the array to a size, but it remains dynamic:

ary = Array.new(10, nil) # => [nil, nil, nil, nil, nil, nil, nil, nil, nil, nil]
ary[0] = 0               # => 0
ary[10] = 10             # => 10
ary                      # => [0, nil, nil, nil, nil, nil, nil, nil, nil, nil, 10]
ary[12]=12               # => 12
ary                      # => [0, nil, nil, nil, nil, nil, nil, nil, nil, nil, 10, nil, 12]
link|improve this answer
In addition to this: when stricter behaviour is desired, use fetch.It can return an error (or a default value, or the result of a block) if the index lies outside the array. – steenslag Jan 7 at 21:24
feedback

I think this is because in dynamic languages, like this and PHP, array management happens behind the scenes. As you have maybe noticed, you never have to declare how BIG an array should be, when in languages like C# you have to specify a fixed length.

When you initialize an array with, let's say, 5 members, then there needs to be memory assigned to cover those 5 members. But what if you want to add an element to the array? Does the compiler have to allocate the memory for more elements to fit? What it does is: give you space for e.g. 8 elements and when you reach those 8 elements, it will double the room of the array to 16. Then when you reach 16 elements, it will increase the size of the array to 32. This resembles the behavior of List<> in C# which is basically still an array with some management behind it.

I don't know how Ruby exactly does it, but when you try to access something outside of the array, it just gives back an empty array. BUT, if you try to access something inside the arrayLENGTH, which you have not assigned, it returns a nil value.

So for visualization your array:

>0: peanut
>1: butter
>2: and
>3: jelly
>4: nil
>5: nil
>6: nil
>7: nil

When you reach the 8th element (>7) the available memory for the array will double, and it will be ready to asign 8 more elements.

link|improve this answer
1  
I appreciate the answer. It's the same conclusion I was assuming, but I'm hoping someone can clarify that this is indeed the defined behaviour of Ruby and that it's not happening for some other reason :) – Martin Jan 7 at 19:44
Well you could simply test where the tipping point is. What I would've done: Make a for loop that loops through the array and even past it. Print the result and look where it stops giving nil. Then add some elements to the array, and now look where the border is. – Tincan Jan 7 at 19:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.