暂停 "until" 循环并等待按键继续 (Ruby)
Pause an "until" loop and wait for a keypress to continue (Ruby)
我有一个带有 until 循环的方法,它一直调用另一个方法,直到第三个方法 returns 为真。这基本上是检查拼图是否已解决。
def call_loop
until solved? #returns true if puzzle is solved
flip #changes one piece on the board
end
end
有没有办法让这个循环在每次调用 flip 方法之前暂停并等待用户按下空格键?
我有一个带有 until 循环的方法,它一直调用另一个方法,直到第三个方法 returns 为真。这基本上是检查拼图是否已解决。
def call_loop
until solved? #returns true if puzzle is solved
flip #changes one piece on the board
end
end
有没有办法让这个循环在每次调用 flip 方法之前暂停并等待用户按下空格键?