STL的簡單應用1

2021-10-03 15:36:30 字數 725 閱讀 7675

標準庫string類//include

string表示可變長度的字串行

字串是物件

string類支援字串物件的各種操作

各種初始化方式.

字串之間的複製、比較、連線.

查詢字串長度和判斷字串是否為空.

訪問字串中的單個字元.

string的簡單使用

#include #include using namespace std; int main() {string s1, s2;//建立兩個空字串物件 string s3 = "hello, world!"; //建立s3, 並初始化 string s4("i am ") ; s2 = "today" ;//賦值 s1=s3+" "+s4;//字串連線 s1+="5";//術尾追加 cout << s1 + s2 + "!」《讀寫string物件時應用c++表示方法

即 string s;

cin>>s;

cout《同時可以用迴圈語句來讀寫string的物件

string word;

while(cin>>word)

cout<-同時還可以用來比較大小

依照字典順序定義並區分大小寫字母。

string s1=「hello」;

string s2=「hello world」;//s2>s1

string s3=「hello」;//s3

STL的簡單應用二

生成排序 標頭檔案 include bool next permutation begin,end 改變區間內元素的順序,產生下乙個排列。bool prev permutation begin,end 產生前乙個排列。注意 end為最後乙個元素的下乙個位置。upper bound和lower bou...

STL順序容器簡單應用

include include includeusing namespace std void main01 演算法和迭代器能無縫連線 int num1 count v1.begin v1.end 3 cout num1 endl 容器裝元素 class teacher void main02 容器...

STL的簡單應用 知識點

stl的簡單應用 知識點 1 include 萬能的標頭檔案,對c 大部分操作完全可以實現。c 中的輸入和輸出有兩種方式,include using namespace std intmain 學習了string的一些簡單的應用,s.size 返回的是s中的字元個數 還有賦值,連線,比較。getli...