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でSTDINをきれいにする方法は? STDINに何も残らないようにしたい。
IO#ready?fromを使用して、STDIN で利用可能な入力があるかどうかを確認できますio/wait。IO#getc文字を読み取り、バッファから削除するために使用します。
IO#ready?
io/wait
IO#getc
require 'io/wait' def clear_stdin $stdin.getc while $stdin.ready? end