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

溫馨提示×

c++的stringstream類怎么使用

小億
86
2023-07-07 14:44:48
欄目: 編程語言

stringstream類是C++標準庫中的一個類,用于處理字符串流。它可以將字符串轉換為各種類型的數據,并將各種類型的數據轉換為字符串。

使用stringstream類需要包含頭文件

下面是stringstream類的一些常用方法和示例:

  1. 創建stringstream對象:
#include <sstream>
std::stringstream ss;
  1. 向stringstream對象中寫入數據:
ss << "Hello";    // 寫入字符串
ss << " " << 123; // 寫入整數
ss << " " << 3.14; // 寫入浮點數
  1. 從stringstream對象中讀取數據:
std::string str;
int num;
double dbl;
ss >> str;   // 讀取字符串
ss >> num;   // 讀取整數
ss >> dbl;   // 讀取浮點數
  1. 轉換為字符串:
std::string result = ss.str();

完整示例:

#include <iostream>
#include <sstream>
int main() {
std::stringstream ss;
ss << "Hello";
ss << " " << 123;
ss << " " << 3.14;
std::string str;
int num;
double dbl;
ss >> str;
ss >> num;
ss >> dbl;
std::cout << "String: " << str << std::endl;
std::cout << "Integer: " << num << std::endl;
std::cout << "Double: " << dbl << std::endl;
std::string result = ss.str();
std::cout << "Result: " << result << std::endl;
return 0;
}

上述示例輸出:

String: Hello
Integer: 123
Double: 3.14
Result: Hello 123 3.14

希望對你有幫助!

0
清流县| 元阳县| 贵阳市| 祁阳县| 肇庆市| 冕宁县| 云霄县| 黑龙江省| 新晃| 垦利县| 类乌齐县| 建阳市| 营山县| 皋兰县| 穆棱市| 丹巴县| 陆川县| 团风县| 蓬安县| 遵义县| 永平县| 鹤庆县| 江陵县| 新建县| 镇宁| 高雄县| 大埔县| 明溪县| 临安市| 同德县| 专栏| 西充县| 金山区| 郴州市| 丹东市| 三原县| 吉安市| 治县。| 左贡县| 盖州市| 芜湖县|