C++基础知识
小黄花一朵
这个作者很懒,什么都没留下…
展开
-
异常
#include <iostream> using namespace std; // 1、异常可以跨函数 // 2、异常变量的捕获要严格匹配类型 // 3、异常变量处理可以留着,也可以继续扔出去 int func3() { cout << "进入 3-----------------" << endl; // return 10; ...原创 2019-02-11 15:32:56 · 137 阅读 · 0 评论 -
异常在类及其对象中的应用
#include <iostream> #include <vector> using namespace std; class Array { public: // 有一个参数的构造函数 Array(int len); // 基类 class eSize { public: eSize(int size):_size...原创 2019-02-12 08:58:36 · 202 阅读 · 0 评论