AdSense

網頁

2022/6/3

C++ string簡單用法

C++ string類別的簡單用法範例。


使用string要用#include <string>標頭檔。

main.cpp

#include <iostream>
#include <string>
using namespace std;

int main() {
    string s1 = "hello";
    cout << s1 << endl; // hello

    string s2 =  "c++";
    cout << s2 << endl; // c++

    string s3 = s1 + " " + s2; // 串接
    cout << s3 << endl; // hello c++

    string s4; // 空字串
    cout << s4.empty() << endl; // 1

    return 0;
}

編譯後執行結果如下:

hello
c++
hello c++
1


沒有留言:

AdSense