Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

ข้อยกเว้นที่กำหนดเองที่ผู้ใช้กำหนดใน C #


ข้อยกเว้น C# แสดงโดยคลาส คลาสข้อยกเว้นใน C# ส่วนใหญ่มาจากคลาส System.Exception โดยตรงหรือโดยอ้อม

คุณยังสามารถกำหนดข้อยกเว้นของคุณเองได้ คลาสข้อยกเว้นที่ผู้ใช้กำหนดได้มาจากคลาสข้อยกเว้น

ต่อไปนี้เป็นตัวอย่าง −

ตัวอย่าง

using System;

namespace UserDefinedException {
   class TestTemperature {
      static void Main(string[] args) {
         Temperature temp = new Temperature();
         try {
            temp.showTemp();
         } catch(TempIsZeroException e) {
            Console.WriteLine("TempIsZeroException: {0}", e.Message);
         }
         Console.ReadKey();
      }
   }
}

public class TempIsZeroException: Exception {
   public TempIsZeroException(string message): base(message) {
   }
}

public class Temperature {
   int temperature = 0;

   public void showTemp() {

      if(temperature == 0) {
         throw (new TempIsZeroException("Zero Temperature found"));
      } else {
         Console.WriteLine("Temperature: {0}", temperature);
      }
   }
}