当我的 C + + 方法遇到一些奇怪的无法恢复的情况时,我想抛出一个异常。抛出 std::string
指针可以吗?
以下是我一直期待做的事情:
void Foo::Bar() {
if(!QueryPerformanceTimer(&m_baz)) {
throw new std::string("it's the end of the world!");
}
}
void Foo::Caller() {
try {
this->Bar(); // should throw
}
catch(std::string *caught) { // not quite sure the syntax is OK here...
std::cout << "Got " << caught << std::endl;
}
}