博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第二十四章 异常和错误处理 1异常
阅读量:6682 次
发布时间:2019-06-25

本文共 799 字,大约阅读时间需要 2 分钟。

// 第二十四章 异常和错误处理//1异常/*#include 
using namespace std;class wrong{};void error(){ cout<<"出错"<
using namespace std;const int num=5;class people{public: people(int size=num); people(const people&r); ~people(){delete []p; } people&operator=(const people&r); int &operator[](int off)const; int GetSize()const{ return size;} friend ostream&operator<<(ostream&, const people&); class wrong{};private: int *p; int size;};people::people(int Size):size(Size){ //初始化指针p p = new int[size]; for(int i=0; i
=0 && off < _size){//如果值在正常范围内 return p[off]; } throw wrong(); return p[0]; //返回}//重新友元输出符 friend ostream&operator<<(ostream&, const people&)//友元函数的定义不用加类名也不用在前面加班friendostream&operator<<(ostream& out, const people&r){ for(int i=0; i

  

转载地址:http://ryxao.baihongyu.com/

你可能感兴趣的文章
nginx http 访问控制相关配置
查看>>
Exchange Server 2010高可用设计
查看>>
我的友情链接
查看>>
bash 学习一 变量、参数、判断与循环
查看>>
第一个tensorflow程序
查看>>
偶然发现的https的实用代理工具:sni_proxy
查看>>
Global Azure SQL Server Database 备份还原机制介绍
查看>>
[转]解决get方法传递URL参数中文乱码问题
查看>>
弱引用
查看>>
分享本地(eclipse上)项目到git上
查看>>
Nginx 与php(fastcgi)安装
查看>>
如何自学英语
查看>>
Rxjava+Retrofit使用记录
查看>>
菜鸟学Linux 第007篇笔记 简单命令的使用讲解(文本、时间、目录)
查看>>
菜鸟学Linux 第041篇笔记 常见系统故障排除
查看>>
H3C 5510 交换机DHCP设置
查看>>
RHEL6使用yum并替换163源
查看>>
PHP 表单验证
查看>>
Postgres 连接数过多 psql: FATAL: sorry, too many clients already
查看>>
Thrift第一课 源码编译
查看>>