Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
プログラムにエラーが発生するまでRubyプログラムを実行し続ける方法はありますか?プログラムがエラーを返したときにループを停止したい。ありがとう
これは別の例です。例外が発生するまで無限に実行され、例外を処理してフォームコードを終了します。
inc = 5 while true do begin puts 4/inc inc-=1 rescue Exception=> e puts e exit end end
無限ループは役に立ちますか?
while true do your code end
コードがエラーをスローすると、ループは停止します。