gpt4 book ai didi

Ruby 未定义方法 `[]' 为 nil :NilClass (NoMethodError)

转载 作者:数据小太阳 更新时间:2023-10-29 06:33:34 25 4
gpt4 key购买 nike

我正在尝试使用 ruby​​ 制作一个 Conway 的人生游戏版本。我用@play_area 创建了一个 Grid 类作为实例变量。但是,当我运行我的代码时,@play_area 在已经被评估两次之后变为 nil(当在行中评估时 if @play_area[x_mod][y_mod].alive )。为什么会这样?

编辑

这是初始化函数:

def initialize(sizex, sizey)
@x_length = sizex
@y_length = sizey
@play_area = []
#initialize dead cells
@x_length.times do |x|
@play_area[x] ||= []
@y_length.times do |y|
@play_area[x][y] = Cell.new(x, y, false)
puts @play_area[x][y].inspect
end
end
end

这是发生错误的函数:

def neighbor_num_of_cell(pos_x,pos_y)
c = @play_area[pos_x][pos_y]
count = 0
((pos_x-1)..(pos_x+1)).each do |x|
((pos_y-1)..(pos_y+1)).each do |y|
unless @play_area[x][y].eql?(c)
x_mod = x % (@x_length + 1)
y_mod = y % (@y_length + 1)
puts x_mod
puts y_mod
if @play_area[x_mod][y_mod].alive
count += 1
end
end
end
end
count
end

对@play_area 中每个单元格的检查显示每个单元格都已正确初始化,这是检查的输出:

jon@jon-MacBook:~/programs/ruby$ ruby main.rb 
#<Cell:0x00000000f919d8 @alive=false, @alive_next=false, @x_pos=0, @y_pos=0>
#<Cell:0x00000000f91848 @alive=false, @alive_next=false, @x_pos=0, @y_pos=1>
#<Cell:0x00000000f916e0 @alive=false, @alive_next=false, @x_pos=0, @y_pos=2>
#<Cell:0x00000000f915a0 @alive=false, @alive_next=false, @x_pos=0, @y_pos=3>
#<Cell:0x00000000f91460 @alive=false, @alive_next=false, @x_pos=0, @y_pos=4>
#<Cell:0x00000000f91320 @alive=false, @alive_next=false, @x_pos=0, @y_pos=5>
#<Cell:0x00000000f911e0 @alive=false, @alive_next=false, @x_pos=0, @y_pos=6>
#<Cell:0x00000000f910a0 @alive=false, @alive_next=false, @x_pos=0, @y_pos=7>
#<Cell:0x00000000f90f38 @alive=false, @alive_next=false, @x_pos=0, @y_pos=8>

...

#<Cell:0x00000000f1abf8 @alive=false, @alive_next=false, @x_pos=19, @y_pos=7>
#<Cell:0x00000000f1aa90 @alive=false, @alive_next=false, @x_pos=19, @y_pos=8>
#<Cell:0x00000000f1a900 @alive=false, @alive_next=false, @x_pos=19, @y_pos=9>
#<Cell:0x00000000f1a798 @alive=false, @alive_next=false, @x_pos=19, @y_pos=10>
#<Cell:0x00000000f1a658 @alive=false, @alive_next=false, @x_pos=19, @y_pos=11>
#<Cell:0x00000000f1a518 @alive=false, @alive_next=false, @x_pos=19, @y_pos=12>
#<Cell:0x00000000f1a3b0 @alive=false, @alive_next=false, @x_pos=19, @y_pos=13>
#<Cell:0x00000000f1a270 @alive=false, @alive_next=false, @x_pos=19, @y_pos=14>
#<Cell:0x00000000f1a130 @alive=false, @alive_next=false, @x_pos=19, @y_pos=15>
#<Cell:0x00000000f19ff0 @alive=false, @alive_next=false, @x_pos=19, @y_pos=16>
#<Cell:0x00000000f19e88 @alive=false, @alive_next=false, @x_pos=19, @y_pos=17>
#<Cell:0x00000000f19d20 @alive=false, @alive_next=false, @x_pos=19, @y_pos=18>
#<Cell:0x00000000f19be0 @alive=false, @alive_next=false, @x_pos=19, @y_pos=19>

最佳答案

问题出在这一行:

@play_area[x][y] = Cell.new(x, y, false)

@play_area[x] 为零。您只初始化了多维数组的一维。在尝试向其中添加元素之前,您需要将 @play_area[x] 的每个元素初始化为一个数组。

@x_length.times do |x|
@play_area[x] ||= []
@y_length.times do |y|
@play_area[x][y] = Cell.new(x, y, false)
end
end

关于Ruby 未定义方法 `[]' 为 nil :NilClass (NoMethodError),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21821678/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com