您好,登錄后才能下訂單哦!
在C++中,std::to_string()
是一個將數字類型轉換為字符串的函數
以下是一個簡單的示例,展示了如何使用std::to_string()
和異常捕獲:
#include<iostream>
#include<string>
#include <stdexcept>
int main() {
try {
int num = 42;
std::string str_num = std::to_string(num);
std::cout << "The number "<< num << " as a string is: "<< str_num<< std::endl;
// 引發一個異常
throw std::runtime_error("An error occurred!");
} catch (const std::runtime_error& e) {
std::cerr << "Caught an exception: " << e.what()<< std::endl;
} catch (...) {
std::cerr << "Caught an unknown exception"<< std::endl;
}
return 0;
}
在這個示例中,我們首先將一個整數轉換為字符串,然后引發一個運行時異常。我們使用try
塊來包裝可能引發異常的代碼,并使用catch
塊來捕獲特定類型的異常(std::runtime_error
)以及其他未知類型的異常。當異常被拋出時,程序會跳轉到相應的catch
塊,并打印出錯誤信息。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。