CO2402 Advanced Programming with C++ Lecture 19 Notes
12 vues 0 fois vendu
Cours
Advanced Programming with C++ (CO2402)
Établissement
University Of Central Lancashire Preston (UClan)
This document contains comprehensive notes from Lecture 19 of the CO2402 course on Advanced Programming with C++. The lecture focuses on exception handling, a crucial mechanism for managing errors and unexpected conditions in software applications. It provides a detailed overview of exceptions, inc...
University of Central Lancashire Preston (UClan)
Inconnu
Advanced Programming with C++ (CO2402)
Tous les documents sur ce sujet (19)
Vendeur
S'abonner
BpoBpo
Avis reçus
Aperçu du contenu
CO2402: Advanced Programming
with C++ Lecture 19
Introduction to Exceptions
1. Overview
o Exceptions are a mechanism for handling errors that disrupt
the normal flow of a program. They provide a way to separate
error-handling code from regular business logic, making
programs more readable and maintainable.
2. Logic and Runtime Errors
o Logic errors are bugs in the code, such as incorrect logic or
algorithm. Runtime errors occur during the execution of a
program, such as file not found or out-of-memory errors.
Example:
3. Exception Safety
o Exceptions add a degree of safety by allowing programs to
handle unforeseen events. They prevent the mixing of
business logic and error-handling code, which can lead to
more maintainable and robust systems.
, Exceptions in C++ vs. Java
1. C++ Exception Handling
o C++ uses exceptions primarily for error handling. It allows
throwing and catching exceptions of any data type and
includes the noexcept keyword to specify functions that do not
throw exceptions.
2. Java Exception Handling
o Java uses exceptions for various purposes, including error
handling and flow control. It has checked exceptions (which
must be caught or declared) and unchecked exceptions. Java
provides finally blocks for cleanup, which C++ achieves using
RAII (Resource Acquisition Is Initialization).
Keywords and Syntax
1. Key Keywords
o try: Defines a block of code that may throw exceptions.
o catch: Catches and handles exceptions thrown in the try
block.
o throw: Used to throw an exception.
Example:
2. Noexcept Keyword
o Indicates that a function does not throw exceptions. If a
noexcept function does throw, std::terminate is called.
Example:
Les avantages d'acheter des résumés chez Stuvia:
Qualité garantie par les avis des clients
Les clients de Stuvia ont évalués plus de 700 000 résumés. C'est comme ça que vous savez que vous achetez les meilleurs documents.
L’achat facile et rapide
Vous pouvez payer rapidement avec iDeal, carte de crédit ou Stuvia-crédit pour les résumés. Il n'y a pas d'adhésion nécessaire.
Focus sur l’essentiel
Vos camarades écrivent eux-mêmes les notes d’étude, c’est pourquoi les documents sont toujours fiables et à jour. Cela garantit que vous arrivez rapidement au coeur du matériel.
Foire aux questions
Qu'est-ce que j'obtiens en achetant ce document ?
Vous obtenez un PDF, disponible immédiatement après votre achat. Le document acheté est accessible à tout moment, n'importe où et indéfiniment via votre profil.
Garantie de remboursement : comment ça marche ?
Notre garantie de satisfaction garantit que vous trouverez toujours un document d'étude qui vous convient. Vous remplissez un formulaire et notre équipe du service client s'occupe du reste.
Auprès de qui est-ce que j'achète ce résumé ?
Stuvia est une place de marché. Alors, vous n'achetez donc pas ce document chez nous, mais auprès du vendeur BpoBpo. Stuvia facilite les paiements au vendeur.
Est-ce que j'aurai un abonnement?
Non, vous n'achetez ce résumé que pour €3,71. Vous n'êtes lié à rien après votre achat.