91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

stringstream如何處理字符串

小樊
84
2024-10-16 14:45:11
欄目: 編程語言

stringstream是C++標準庫中的一個類,它位于<sstream>頭文件中。這個類允許你使用流操作符<<>>來讀取和寫入字符串,就像操作文件流或控制臺流一樣。這使得處理字符串變得更加靈活和方便。

下面是一些使用stringstream處理字符串的基本示例:

1. 將字符串寫入stringstream

#include <iostream>
#include <sstream>
#include <string>

int main() {
    std::stringstream ss;
    std::string str = "Hello, World!";
    ss << str;

    // 如果你想查看寫入的內容,可以將其轉換回字符串
    std::string output = ss.str();
    std::cout << output << std::endl;  // 輸出: Hello, World!

    return 0;
}

2. 從stringstream讀取字符串

#include <iostream>
#include <sstream>
#include <string>

int main() {
    std::stringstream ss("Hello, I am a stringstream.");

    std::string word;
    while (ss >> word) {
        std::cout << word << std::endl;  // 逐詞輸出:
        // Hello,
        // I
        // am
        // a
        // stringstream.
    }

    return 0;
}

在這個例子中,>>操作符用于從stringstream中讀取字符串。每次調用>>時,它都會讀取直到遇到空格或標點符號的內容。

3. 使用stringstream進行字符串格式化

#include <iostream>
#include <sstream>
#include <string>

int main() {
    std::stringstream ss;
    int age = 25;
    std::string name = "Alice";

    ss << "My name is " << name << " and I am " << age << " years old.";
    std::string output = ss.str();
    std::cout << output << std::endl;  // 輸出: My name is Alice and I am 25 years old.

    return 0;
}

在這個例子中,我們使用<<操作符將多個值插入到stringstream中,并使用字符串連接它們。最后,我們將結果轉換回字符串并輸出。

0
吴旗县| 临沂市| 龙川县| 临夏市| 璧山县| 台南市| 诏安县| 岳普湖县| 榆林市| 南安市| 恭城| 兴国县| 鄂伦春自治旗| 潜江市| 区。| 如皋市| 五河县| 湘潭县| 德州市| 宁德市| 徐州市| 长治县| 游戏| 泾源县| 巴里| 商河县| 广昌县| 邹城市| 巩义市| 顺义区| 仪陇县| 石楼县| 桑日县| 新沂市| 天全县| 京山县| 房山区| 原阳县| 嘉义市| 泰州市| 永川市|