what is use of exception and catch and thow in c++.... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

what is use of exception and catch and thow in c++....

It is use in high symetric programming or not........

20th May 2019, 4:51 AM
Kunal
Kunal - avatar
2 Answers
+ 1
An exception is a problem that arises during the execution of a program. A C++ exception is a response to an exceptional circumstance that arises while a program is running, such as an attempt to divide by zero. Exceptions provide a way to transfer control from one part of a program to another. C++ exception handling is built upon three keywords: try, catch, and throw. throw − A program throws an exception when a problem shows up. This is done using a throw keyword. catch − A program catches an exception with an exception handler at the place in a program where you want to handle the problem. The catch keyword indicates the catching of an exception.
20th May 2019, 4:55 AM
Troy🌹
Troy🌹 - avatar
0
An exception happens when there is an error (like you try to divide by zero, the variable is not defined...) To not mess up the whole program, you can use catch, that will "catch" the error, so it won't be written on the screen. Throw means if something happens, you can throw a custom exception.
20th May 2019, 4:54 AM
Airree
Airree - avatar