C++异常处理报错【terminate called after throwing an instance of ‘char const‘】
C++只是在大学中学习过,都是为了应付考试,今天导师给我一个问题,C++异常处理的问题,让我来解决一下,这能怎么办,不会也得会,硬着头皮解决呗0.问题描述先看一下代码//插入的方法template <class DataType> void SeqList<DataType> :: Insert(int i, DataType x){ if (i >= MaxSize) throw "上溢"; if (i < 1 || i > length .
原创
2020-09-21 15:36:37 ·
21054 阅读 ·
1 评论