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.
私の愚かな理由と単調さのために、各再帰の前に0.5秒の遅延を作成するにはどうすればよいですか?
Pascal は正しいですが、読みやすくするためにメッセージを受信する必要がない場合は、 を使用してtimer:sleep/1ください。この関数はまったく同じことを行います。
timer:sleep/1
receive ブロックの after ステートメントを使用する
wait_ms(X) when is_integer(X) -> receive after X -> done end.