您好,登錄后才能下訂單哦!
這篇文章主要講解了“java中的string對象怎么用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“java中的string對象怎么用”吧!
C語言中,一般使用字符數組來表示字符串
char str[100] = "I love China";
C++中,也可以用到string類型來表示字符串,string和字符數組之間還可以相互轉換,string類型里提供了更多操作字符串的方法,string用起來會更加方便
string也位于std命名空間中, 方便使用可以加: using namespace std;
頭文件:
#include < string >
常用方法:
#include <string> string s1; //默認初始化, s1 = "", 代表一個空串,里邊沒有字符 string s2 = "I love China"; //把字符串拷貝到s2代表的一段內存中, 拷貝時不包括末尾的'\0'. string s3("I love China"); //另一種寫法, 同2 string s4 = s2; //拷貝s2到s4中, s2,s4兩塊不同內存 int num = 6; string s5(num, 'a'); //aaaaaa , s5初始化為連續num個字符'a' //這種方式不推薦, 因為會在系統內部創建臨時對象
返回布爾類型
string s1; if (s1.empty()) { cout << "s1為空" << endl; }
返回類型/字符數量
string s1; cout << s1.size() << endl; //0 cout << s1.length() << endl; //0 string s2 = "I love China"; cout << s2.size() << endl; //12 cout << s2.length() << endl; //12 string s3 = "你好"; cout << s3.size() << endl; //4 cout << s3.length() << endl; //4
返回s中的第n個字符, n代表位置, 從0開始, 到size()-1
string s3 = "I love China"; if (s3.size() > 4) { cout << s3[4] << endl; s3[4] = 'w'; } cout << s3 << endl; //輸出 //v //I lowe China
字符串連接
string s1 = "abcd"; string s2 = "hijk"; cout << s1 + s2 << endl; //abcdhijk
賦值
string s1 = "abcd"; string s2 = "ab"; s1 = s2; cout << s1 << endl; //輸出 //ab
判斷是否相等
注意:大小寫敏感
string s1 = "ab"; string s2 = "ab"; if (s1 == s2) { cout << "相等" << endl; }
同上反例
返回一個字符串s中的內容指針,返回是一個指向正規C字符串的常量指針, 所以是以'\0'結尾的.
string s1 = "abc"; //返回"abc"的內存指針 const char* p = s1.c_str(); char str[100]; strcpy_s(str, sizeof(str), p); cout << str << endl;
例:
string s1 = "abc"; string s2 = "abC"; cout << s1 + " and " + s2 + 'D' << endl;//abc and abCD
c11中范圍for: 能夠遍歷序列中的每一個元素
string s1 = "I love China"; for (auto c : s1) //char auto自動推斷 { cout << c; //I love China }
例2:
string s1 = "I love China"; for (auto &c : s1) { //toupper() 小寫轉大寫, 大寫沒變化 //tolower() 大轉小 c = toupper(c); //因為c是一個引用, 所以這相當于改變s1中的值 } cout << s1; //I LOVE CHINA
感謝各位的閱讀,以上就是“java中的string對象怎么用”的內容了,經過本文的學習后,相信大家對java中的string對象怎么用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。