2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Kernel#at_exitの挙動

Posted at

「なるほどUnixプロセス」の第10章にあった、Kernel#at_exitを見て、何回at_exitを何回か叩いたらどうなるんだろうと思って試したので、メモ。

at_exit.rb
at_exit{puts 'Last!'}
at_exit{puts 'Last!2'}
exit

実行するとこんな出力になる。

Last!2
Last!

ブロックがpopされる感じなんですかね。

と、ここまで試してみて、RubyのKernel#at_exitに書いてあることに気づきました。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?