25 Nov 2019

  • November 25, 2019
  • Amitraj
Exception Handling Mechanism in C++

-> C++ exception handling mechanism is basically built upon 3 keywords namely  try, throw and catch.

-> The keyword try is used to preface a block of statements which may generate exceptions. This block of statement is known as try block.

-> When an exception is detected, it is thrown using throw statement int the try block.

-> A catch block defined by the keyword catch , catches the exception thrown by the throw statement int the try block and handles it appropriately.
          A catch block that catches an exception must immediately follow the try block that throws the exception.

  
Try Block
Detect and throw
An exception

   Exception Object

Catch Block
Catches and handles the exception






Related Posts:

  • Structure of a C++ Program Structure of a C++ Program       1.) Header file (Include file) 2.) Member function definition 3.) Class declaration 4.) Main function 1. Header File: In this section, we add header files and resource files… Read More
  • Applications of OOP Applications of OOP 1.)  Realtime Systems 2.) Simulation and modeling 3.) Object oriented databases 4.) Hypertext, Hypermedia and Experttext 5.) AI and  Expert systems 6.) Neural networks and Parallel progra… Read More
  • What are basic principles of Object Oriented Programming? Basic Overview Of OOP Principles 1.) Data Abstraction:- -> Data Abstraction is one of the most imporatnt and essential  feature of Object oriented programming. Abstraction means showing essential features by hidin… Read More
  • C++ Data Types C++ Data Types Data types define the type of data a variable can hold, for example an integer variable can hold integer data, a character type variable can hold character data etc. Data types in C++ are categorised in thre… Read More
  • C++ Variable Declaration -> C++ is a strongly-typed language, and requires every variable to be declared with its type before its first use. -> This informs the compiler the size to reserve in memory for the variable and how to interpret its v… Read More

Translate

Popular Posts