Pardon the total newbiew question but why is @game_score always nil?
#bowling.rb
class Bowling
@game_score = 0
def hit(pins)
@game_score = @game_score + pins
end
def score
@game_score
end
end
|
Pardon the total newbiew question but why is @game_score always nil?
| ||||
feedback
|
|
Because you don't have
The assignment in the class definition is not doing what you think it is doing, and when If you now ask what happened to It's way cool the way Ruby classes have this Zen-like "real" existence. Ruby doesn't precisely have named classes, rather, class names are references to objects of class | ||||
|
feedback
|
|
Let's walk through the code, shall we?
At this point (1), we are still inside the class
Now (2), we are inside an instance method of the Since this instance variable is never initialized to anything, it will evaluate to
And here (3), we are again inside an instance method of the
We can use Ruby's reflection capabilities to take a look at what's going on:
Now let's inject a value into the instance variable:
So, we see that everything works as it should, we only need to figure out how to make sure the instance variable gets initialized. To do that, we need to write an initializer method. Strangely, the initializer method is actually a private instance method called
Let's test this:
BTW: just some minor Ruby style tips: indentation is 2 spaces, not 1 tab. And your | |||
|
feedback
|
|
This is as you can tell different from the normal instance variables defined for instance objects. | ||||
|
feedback
|
|
@game_score will never get a value of zero here - you need to put it inside initialize, as in def initialize @game_score = 0 end | |||
|
feedback
|