我正在家里学习c ++而且我正在使用rapidxml lib。 我正在使用随附的utils来打开文件:
rapidxml::file<char> myfile (&filechars[0]);
我注意到如果filechars
错误,rapidxml::file
会抛出runtime_error:
// Open stream
basic_ifstream<Ch> stream(filename, ios::binary);
if (!stream)
throw runtime_error(string("cannot open file ") + filename);
stream.unsetf(ios::skipws);
我想我需要写出类似的东西:
try
{
rapidxml::file<char> GpxFile (pcharfilename);
}
catch ???
{
???
}
我做了一些谷歌搜索,但我找不到我需要的???
。
有人能帮帮我吗? 谢谢!
答案 0 :(得分:14)
您需要在catch
语句旁边添加一个异常声明。抛出的类型是std::runtime_error。
try
{
rapidxml::file<char> GpxFile (pcharfilename);
}
catch (const runtime_error& error)
{
// your error handling code here
}
如果您需要捕获多种不同类型的异常,那么您可以使用多个catch
语句:
try
{
rapidxml::file<char> GpxFile (pcharfilename);
}
catch (const runtime_error& error)
{
// your error handling code here
}
catch (const std::out_of_range& another_error)
{
// different error handling code
}
catch (...)
{
// if an exception is thrown that is neither a runtime_error nor
// an out_of_range, then this block will execute
}
答案 1 :(得分:8)
try
{
throw std::runtime_error("Hi");
}
catch(std::runtime_error& e)
{
cout << e.what() << "\n";
}
答案 2 :(得分:1)
嗯,这取决于发生时你想做什么。这是最低限度:
try
{
rapidxml::file<char> GpxFile (pcharfilename);
}
catch (...)
{
cout << "Got an exception!"
}
如果你想得到实际的异常,那么你需要声明一个变量来将它存储在括号内代替三个点。