「C#」System.DivideByZeroException例外処理のサンプル

書式
try {
//some code
} catch ( 例外のクラス 変数 ) {
//処理コード
} finally{
//処理コード
}

サンプルコード

using System;
namespace ErrorHandlingApplication
{
    class DivNumbers
    {
        int result;
        DivNumbers()
        {
            result = 0;
        }
        public void division(int num1, int num2)
        {
            try
            {
                result = num1 / num2;
            }
            catch (DivideByZeroException e)
            {
                Console.WriteLine("Exception caught: {0}", e);
            }
            finally
            {
                Console.WriteLine("Result: {0}", result);
            }

        }
        static void Main(string[] args)
        {
            DivNumbers d = new DivNumbers();
            d.division(, 0);
            Console.ReadKey();
        }
    }
}

実行結果
Exception caught: System.DivideByZeroException: Attempted to divide by zero.
at …
Result: 0

Software

Posted by arkgame