我不確定我的自定義異常方法是否正確。我想要做的是自定義消息拋出異常,但似乎我創建了一個內存泄漏...帶消息的C++異常
class LoadException: public std::exception {
private:
const char* message;
public:
LoadException(const std::string message);
virtual const char* what() const throw();
};
LoadException::LoadException(const std::string message) {
char* characters = new char[message.size() + 1];
std::copy(message.begin(), message.end(), characters);
characters[message.size()] = '\0';
this->message = characters;
}
我用它如下:
void array_type_guard(Local<Value> obj, const std::string path) {
if (!obj->IsArray()) {
throw LoadException(path + " is not an array");
}
}
try {
objects = load_objects();
} catch (std::exception& e) {
ThrowException(Exception::TypeError(String::New(e.what())));
return scope.Close(Undefined());
}
我怕陣列創建在構造函數中永遠不會被刪除。但我不知道如何刪除它 - 我應該添加析構函數還是使用完全不同的方法?
更新:
我其實是試圖用串類,如下所示:
class LoadException: public std::exception {
private:
const char* msg;
public:
LoadException(const std::string message);
virtual const char* what() const throw();
};
LoadException::LoadException(const std::string message) {
msg = message.c_str();
}
const char* LoadException::what() const throw() {
return msg;
}
但無法獲得錯誤信息,那麼 - 當我打印的「顯示一些隨機輸出什麼()」。
只需使用'string'來存儲消息。或者是否有'char *'的原因? –
不,沒有char *的理由。我將代碼更改爲字符串。謝謝。 –
或者只是用一個析構函數來刪除分配的字符數組。 –