执行以下代码时出现此错误
@crc=0xFFFFFFFF
@index=0
7.times { |n|
@index+=@crc**@a[n]
@crc=@crc >> 8
puts @crc
**@crc=@crc**@reverse_crc[@index]** - this is the line i am getting above error while execute
puts @crc
}
有人有解决这个问题的方法吗?
执行以下代码时出现此错误
@crc=0xFFFFFFFF
@index=0
7.times { |n|
@index+=@crc**@a[n]
@crc=@crc >> 8
puts @crc
**@crc=@crc**@reverse_crc[@index]** - this is the line i am getting above error while execute
puts @crc
}
有人有解决这个问题的方法吗?