बेस और व्युत्पन्न वर्ग दोनों के लिए एक अपवाद को पकड़ने के लिए हमें बेस क्लास से पहले व्युत्पन्न वर्ग के कैच ब्लॉक को रखना होगा। अन्यथा, व्युत्पन्न वर्ग के पकड़ ब्लॉक तक कभी नहीं पहुंचा जा सकेगा।
एल्गोरिदम
Begin Declare a class B. Declare another class D which inherits class B. Declare an object of class D. Try: throw derived. Catch (D derived) Print “Caught Derived Exception”. Catch (B b) Print “Caught Base Exception”. End.
यहाँ एक सरल उदाहरण है जहाँ व्युत्पन्न वर्ग का कैच बेस क्लास के कैच से पहले रखा गया है, अब आउटपुट की जाँच करें
#include<iostream> using namespace std; class B {}; class D: public B {}; //class D inherit the class B int main() { D derived; try { throw derived; } catch(D derived){ cout<<"Caught Derived Exception"; //catch block of derived class } catch(B b) { cout<<"Caught Base Exception"; //catch block of base class } return 0; }
आउटपुट
Caught Derived Exception
यहां एक सरल उदाहरण दिया गया है जहां व्युत्पन्न वर्ग के कैच से पहले बेस क्लास का कैच रखा गया है, अब आउटपुट की जांच करें
#include<iostream> using namespace std; class B {}; class D: public B {}; //class D inherit the class B int main() { D derived; try { throw derived; } catch(B b) { cout<<"Caught Base Exception"; //catch block of base class } catch(D derived){ cout<<"Caught Derived Exception"; //catch block of derived class } return 0; }
आउटपुट
Caught Base Exception Thus it is proved that we need to put catch block of derived class before the base class. Otherwise, the catch block of derived class will never be reached.