代码之家  ›  专栏  ›  技术社区  ›  Nifriz

与类实例变量[duplicate]类似使用的Ruby类变量

  •  0
  • Nifriz  · 技术社区  · 6 年前

    请原谅总的NewView问题,但为什么@game_分数总是为零?

    #bowling.rb
    
    class Bowling
      @game_score = 0
        def hit(pins)
            @game_score = @game_score + pins
        end
    
        def score
            @game_score
        end
    end
    
    0 回复  |  直到 13 年前