Advertisement
hs202091

C++ Exceptions

Nov 8th, 2018
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. C++ Exceptions
  2.  
  3.  
  4.  
  5. Note: This tutorial assumes a basic knowledge of the C++ language. You should know how to use functions, variables, and have a basic understanding of how classes work.
  6.  
  7. Note: The complete source code for the examples in this tutorial can be downloaded at the end of the tutorial.
  8.  
  9. In this tutorial, we will cover the basics of handling exceptions in C++. We'll also touch on how to create and use your own exceptions in your applications, as well as how to deal with exceptions thrown by STL (Standard Template Library) classes
  10.  
  11.  
  12.  
  13. Download the full source code for examples contained in this tutorial in the link:
  14. https://geistlink.com/P1qe4EP7
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement