栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

C++学习日志49-----自定义异常类

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C++学习日志49-----自定义异常类

目录
  • 一、自定义异常类
  • 二、相关文件


一、自定义异常类
#include
#include
#include"Vec3D.h"
using std::cout;
using std::endl;
//任务4:在主函数中创建Vec3D对象并调用[]制造越界问题
//捕获异常并输出异常中的信息
int main()
{
	Vec3D v1{ 1.2,3.2,4.3 };
	try
	{
		cout << v1[4];
	}
	catch (std::exception& e)
	{
		cout << "Exception: " << e.what() << endl;
		if (typeid(e) == typeid(RangeException))
		{
			auto r = dynamic_cast(e);
			cout << "Vector dimension : " << r.getDimension() << endl;
			cout << " I ndex:" << r.getIndex() << endl;

		}
	}




}


结果如上图所示。

二、相关文件
#pragma once
#include
#include"RangeException.h"
//任务1:创建Vec3D类,用array保存向量成员

//任务3:实现Vec3D::operator[](const int d=index)
//当index越界时,抛出RangeException 的对象
class Vec3D
{
private:
	std::array v{ 1.0,1.0,1.0 };
public:
	Vec3D() = default;
	Vec3D(double x, double y, double z)
	{
		v[0] = x;
		v[1] = y;
		v[2] = z;
	}
	double& operator[](const int index)
	{
		if (index >= 0 && index <= 2)
		{
			return v[index];
		}
		else
		{
			throw RangeException(3, index);
		}
	}
};


#pragma once
#include
#include
//任务2:创建RangeException 类
//定义构造函数 RangeException(std::size_t dimension,const int index)
class RangeException:public std::exception
{
private:
	std::size_t dimension{ 3 };
	int index{ 0 };
public:
	RangeException(std::size_t dimension, const int index)
	{
		this->dimension = dimension;
		this->index = index;
	}
	std::size_t getDimension()
	{
		return dimension;
	}
	int getIndex()
	{
		return index;
	}


};

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/864794.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号