C++(OPP)异常层次结构

  • 异常是类 可以自己创建
  • 异常派生
  • 异常中的数据:数据成员
  • 按引用传递异常
    • 在异常中使用虚函数
#include <iostream>

using namespace std;

const int DefaultSize = 10;

// 动态数组功能
class Array
{
public:
	Array(int itsSize = DefaultSize);
	~Array() { delete [] pType;}
	// 运算符重载
	int & operator[] (int offSet);
	const int & operator[](int offSet) const;

	// 访问器, accessors
	int GetitsSize() const { return itsSize; }

	// 异常类
	class xBoundary{};
	class xSize{
	public:
		xSize() {}
		xSize(int size):itsSize(size){};
		~xSize(){}
		int GetSize() { return itsSize; }
		virtual void PrintError()
		{
			cout << "下标发送错误:"<< itsSize << endl;
		}
	protected:
		int itsSize;
	};
	class xZero : public xSize{
	public:
		xZero(int size) : xSize(size){}
		virtual void PrintError()
		{
			cout << "下标不能是0!" << endl;
		}
	};
	class xNegative : public xSize{
	public:
		xNegative(int size): xSize(size){}
		virtual void PrintError()
		{
			cout << "下标不能为负!:" << endl;
		}
	};
	class xTooSmall : public xSize{
	public:
		xTooSmall(int size): xSize(size){};
		virtual void PrintError()
		{
			cout << "下标不能小于10!" << endl;
		}
	};
	class xTooBig : public xSize{
	public:
		xTooBig(int size) : xSize(size){}
		virtual void PrintError()
		{
			cout << "下标不能大于10!" << endl;
		}
	};
private:
	int *pType;
	int itsSize;
};

int &Array::operator[] (int offSet)
{
	int size = this->GetitsSize();
	if(offSet >= 0 && offSet < size)
		return pType[offSet];
	throw xBoundary();
	
}

Array::Array(int size) : itsSize(size)
{
	if (size == 0)
		throw xZero(size);
	else if (size < 10)
		throw xTooSmall(size);
	else if (size > 30000)
		throw xTooBig(size);
	else if (size < 0)
		throw xNegative(size);

	pType = new int[size];
	for(int i = 0; i < size; i++)
		pType[i] = 0;
}

int main()
{
	try{
		Array a;

		Array intArray(20);
		Array b(50);

		for(int j=0; j<100; j++)
		{
			intArray[j] = j;
			cout << "intArray[" << j << "] okey..." << endl;
		}
	}
	catch(Array::xBoundary)
	{
		cout << "下标越界了" << endl;
	}
	catch(Array::xSize& exp)
	{
		exp.PrintError();
	}

//	}catch(Array::xNegative theException)
//	{
//		cout << "下标不能是负数:" << theException.GetSize() << endl;
//	}catch(Array::xTooBig theException)
//	{
//		cout << "下标不能大于30000!" << theException.GetSize() << endl;
//	}catch(Array::xTooSmall theException)
//	{
//		cout << "下标不能小于10!" << theException.GetSize() << endl;
//	}catch(Array::xZero)
//	{
//		cout << "下标不能是0" << endl;
//	}

	cout << "test" << endl;
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值