C++ 字符串

c++ 字符串

c++ 提供了以下兩種類型的字符串表示形式:

  • c 風(fēng)格字符串
  • c++ 引入的 string 類類型

 

1. c 風(fēng)格字符串

c 風(fēng)格的字符串起源于 c 語言,并在 c++ 中繼續(xù)得到支持。字符串實際上是使用 null 字符 '' 終止的一維字符數(shù)組。因此,一個以 null 結(jié)尾的字符串,包含了組成字符串的字符。

下面的聲明和初始化創(chuàng)建了一個 "hello" 字符串。由于在數(shù)組的末尾存儲了空字符,所以字符數(shù)組的大小比單詞 "hello" 的字符數(shù)多一個。char greeting[6] = {'h', 'e', 'l', 'l', 'o', ''};

依據(jù)數(shù)組初始化規(guī)則,您可以把上面的語句寫成以下語句:

char greeting[] = "hello";

以下是 c/c++ 中定義的字符串的內(nèi)存表示:

其實,您不需要把 null 字符放在字符串常量的末尾。c++ 編譯器會在初始化數(shù)組時,自動把 '' 放在字符串的末尾。讓我們嘗試輸出上面的字符串

#include  using namespace std;

int main ()
{
   char greeting[6] = {'h', 'e', 'l', 'l', 'o', '\0'};

   cout << "greeting message: ";
   cout << greeting << endl;

   return 0;
} 

當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

greeting message: hello

c++ 中有大量的函數(shù)用來操作以 null 結(jié)尾的字符串:supports a wide range of functions that manipulate null-terminated strings:

序號 函數(shù) & 目的
1 strcpy(s1, s2);
復(fù)制字符串 s2 到字符串 s1。
2 strcat(s1, s2);
連接字符串 s2 到字符串 s1 的末尾。
3 strlen(s1);
返回字符串 s1 的長度。
4 strcmp(s1, s2);
如果 s1 和 s2 是相同的,則返回 0;如果 s1s2 則返回大于 0。
5 strchr(s1, ch);
返回一個指針,指向字符串 s1 中字符 ch 的第一次出現(xiàn)的位置。
6 strstr(s1, s2);
返回一個指針,指向字符串 s1 中字符串 s2 的第一次出現(xiàn)的位置。

下面的實例使用了上述的一些函數(shù):

#include  #include  using namespace std;

int main ()
{
   char str1[11] = "hello";
   char str2[11] = "world";
   char str3[11];
   int  len ;

   // 復(fù)制 str1 到 str3
   strcpy( str3, str1);
   cout << "strcpy( str3, str1) : " << str3 << endl;

   // 連接 str1 和 str2
   strcat( str1, str2);
   cout << "strcat( str1, str2): " << str1 << endl;

   // 連接后,str1 的總長度
   len = strlen(str1);
   cout << "strlen(str1) : " << len << endl;

   return 0;
}

當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

strcpy( str3, str1) : hello
strcat( str1, str2): helloworld
strlen(str1) : 10

 

2. c++ 中的 string 類

c++ 標(biāo)準(zhǔn)庫提供了 string 類類型,支持上述所有的操作,另外還增加了其他更多的功能。我們將學(xué)習(xí) c++ 標(biāo)準(zhǔn)庫中的這個類,現(xiàn)在讓我們先來看看下面這個實例:

現(xiàn)在您可能還無法透徹地理解這個實例,因為到目前為止我們還沒有討論類和對象。所以現(xiàn)在您可以只是粗略地看下這個實例,等理解了面向?qū)ο蟮母拍钪笤倩仡^來理解這個實例。

#include  #include  using namespace std;
int main ()
{
   string str1 = "hello";
   string str2 = "world";
   string str3;
   int  len ;

   // 復(fù)制 str1 到 str3
   str3 = str1;
   cout << "str3 : " << str3 << endl;

   // 連接 str1 和 str2
   str3 = str1 + str2;
   cout << "str1 + str2 : " << str3 << endl;

   // 連接后,str3 的總長度
   len = str3.size();
   cout << "str3.size() :  " << len << endl;

   return 0;
} 

當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

str3 : hello
str1 + str2 : helloworld
str3.size() :  10

下一節(jié):c++ 指針

c++ 簡介

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频