2008年5月1日木曜日

Chapter 8 Exceptions, Catch, and Throw

引き続き要点のみ。


  • The Exception Class
    Exceptionは情報として、エラーメッセージ文字列とbacktraceをもつ。

  • Handling Exceptions

    • System Errors
    • Tidying Up
      構文は、

      begin
      ...
      rescue
      ...
      ensure
      ...
      end

    • Play it Again
      rescureの中のretryで、beginに再入する。


  • Raising Exceptions

    • Adding Information to Exceptions

  • Catch and Throw
    Catch とThrowはgoto文みたいなものかな。

0 件のコメント: