std::stringstream
是 C++ 標準庫中的一個類,用于處理字符串流
std::stringstream
時,可以通過檢查其狀態位來判斷操作是否成功。例如,可以使用 fail()
、bad()
和 eof()
方法來檢查流的狀態。這些方法返回 true
表示發生了錯誤,返回 false
表示操作成功。#include<iostream>
#include <sstream>
#include<string>
int main() {
std::stringstream ss("123 abc");
int num;
ss >> num;
if (ss.fail()) {
std::cerr << "Error: Failed to read an integer from the stream."<< std::endl;
} else {
std::cout << "Read the number: "<< num<< std::endl;
}
return 0;
}
std::stringstream
,可以使用 clear()
方法清除錯誤狀態。#include<iostream>
#include <sstream>
#include<string>
int main() {
std::stringstream ss("123 abc");
int num;
ss >> num;
if (ss.fail()) {
std::cerr << "Error: Failed to read an integer from the stream."<< std::endl;
ss.clear(); // Clear the error state
}
std::string str;
ss >> str;
std::cout << "Read the string: "<< str<< std::endl;
return 0;
}
std::stringstream
默認不會拋出異常,但你可以通過設置異常掩碼來改變這種行為。使用 exceptions()
方法可以設置異常掩碼,當指定的條件發生時,將拋出 std::ios_base::failure
異常。#include<iostream>
#include <sstream>
#include<string>
int main() {
std::stringstream ss("123 abc");
ss.exceptions(std::ios::failbit | std::ios::badbit); // Enable exceptions for failbit and badbit
try {
int num;
ss >> num;
std::cout << "Read the number: "<< num<< std::endl;
} catch (const std::ios_base::failure& e) {
std::cerr << "Error: " << e.what()<< std::endl;
}
return 0;
}
請注意,異常處理可能會導致性能下降,因此在關注性能的場景中,建議使用狀態位檢查而非異常處理。