/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
practical_exercises/10_day_practice/day9/exception/9-2.cpp
27 строк
642 B
zhangxing
support bazel complie this project and format code.
30 мар 2024, 17:00
30 мар 2024, 17:00
3c8a3f2
Код
Авторство
О чём код?
#include <iostream> using namespace std; class BasicException { public: virtual string Where() { return "BasicException..."; } }; class FileSysException : public BasicException { public: virtual string Where() { return "FileSysException..."; } }; class FileNotFound : public FileSysException { public: virtual string Where() { return "FileNotFound..."; } }; class DiskNotFound : public FileSysException { public: virtual string Where() { return "DiskNotFound..."; } }; int main() { try { // ..... //程序代码 DiskNotFound err; throw &err; } catch (BasicException *p) { cout << p->Where() << endl; } }