当我的链接列表为空时,我试图抛出 EmptyListException,但如果我取消注释 throw EmptyListException(),程序将继续终止。这是我的 EmptyListException 标头
#ifndef EMPTYLISTEXCEPTION_H
#define EMPTYLISTEXCEPTION_H
#include <stdexcept>
using std::out_of_range;
class EmptyListException : public out_of_range
{
public:
EmptyListException(): out_of_range("Empty List!\n") {}
};
#endif // EMPTYLISTEXCEPTION_H
-- 在 Clist.h 中抛出命令
template <typename E>
E Clist<E>::Remove() throw()
{
if(isEmpty())
{
cout << "Empty List, no removal";
//throw EmptyListException();
return '.';
}
... code
}
-- 在 Main 中捕获
try{
cout << list->Remove() << endl;
} catch(EmptyListException &emptyList)
{
cout << "Caught :";
cout << emptyList.what() << endl;
}
错误“此应用程序已请求运行时以不寻常的方式终止它。请联系应用程序的支持团队以获取更多信息。