中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

istringstream、ostringstream、stringstream類介紹

小云
99
2023-08-24 15:32:44
欄目: 編程語言

istringstream、ostringstream和stringstream類都是C++標準庫中的流類,用于處理字符串。它們都是繼承自基類istringstream、ostringstream和stringstream。

  1. istringstream類:

istringstream類用于從字符串中讀取數據。它主要用于將字符串轉換為其他數據類型,比如將字符串轉換為整數、浮點數等。istringstream對象可以像輸入流一樣從字符串中讀取數據,并且可以通過輸入操作符(>>)進行數據提取。例如:

#include <iostream>
#include <sstream>
#include <string>
int main() {
std::string str = "123 456 789";
std::istringstream iss(str);
int num1, num2, num3;
iss >> num1 >> num2 >> num3;
std::cout << num1 << " " << num2 << " " << num3 << std::endl;
return 0;
}

輸出:

123 456 789
  1. ostringstream類:

ostringstream類用于將數據輸出到字符串中。它主要用于將其他數據類型轉換為字符串。ostringstream對象可以像輸出流一樣使用輸出操作符(<<)將數據寫入到字符串中。例如:

#include <iostream>
#include <sstream>
#include <string>
int main() {
std::ostringstream oss;
int num1 = 123;
float num2 = 3.14;
std::string str = "abc";
oss << num1 << " " << num2 << " " << str;
std::string result = oss.str();
std::cout << result << std::endl;
return 0;
}

輸出:

123 3.14 abc
  1. stringstream類:

stringstream類是istringstream和ostringstream的結合體,既可以從字符串中讀取數據,也可以將數據寫入到字符串中。stringstream對象可以同時用作輸入流和輸出流,可以通過輸入操作符(>>)和輸出操作符(<<)進行數據的讀取和寫入。例如:

#include <iostream>
#include <sstream>
#include <string>
int main() {
std::stringstream ss;
int num1 = 123;
float num2 = 3.14;
std::string str = "abc";
ss << num1 << " " << num2 << " " << str;
int result1;
float result2;
std::string result3;
ss >> result1 >> result2 >> result3;
std::cout << result1 << " " << result2 << " " << result3 << std::endl;
return 0;
}

輸出:

123 3.14 abc

總結:istringstream類用于從字符串中讀取數據,ostringstream類用于將數據寫入到字符串中,stringstream類既可以從字符串中讀取數據,又可以將數據寫入到字符串中。

0
甘德县| 满城县| 惠安县| 大姚县| 扶余县| 宁国市| 乌拉特中旗| 海伦市| 东丰县| 凤冈县| 永吉县| 阿合奇县| 台前县| 绥棱县| 渑池县| 深泽县| 永年县| 交城县| 出国| 工布江达县| 静海县| 连云港市| 平利县| 霞浦县| 瑞丽市| 兰州市| 迁安市| 台中县| 武邑县| 腾冲县| 靖西县| 郴州市| 阜平县| 连平县| 青田县| 竹北市| 宁津县| 侯马市| 雷州市| 延庆县| 邵东县|