1. 程式人生 > >【面試題】String型別中間可以包含'\0'嗎

【面試題】String型別中間可以包含'\0'嗎

答案是可以的,Test:

#include <iostream>
#include <string>

using namespace std;

int main()
{
    char *cStr = "hello\0world";
    string str{'a', 'b', '\0', 'c'};
    string str1("world\0hello");
    unsigned char b = 255;
    printf("cStr = %s  str = %s  str1 = %s \n", cStr, str.c_str(), str1.c_str());
    cout << "str: " << str << " str1: " << str1  <<endl;
    cout << "str1.size = " << str1.size() << endl;
    cout << "str.size = " << str.size() << endl;
    system("pause");
    return 0;
}

結果如下:


之所以str1並未包含‘\0’,是因為他是C風格的字串常量,而C串是以'\0'作為結束標誌符,所以str1的初始化等價於=》str1("world")。

c語言用char*指標作為字串時,在讀取字串時需要一個特殊字元0來標記指標的結束位置,也就是通常認為的字串結束標記。

而c++語言則是面向物件的,長度資訊直接被儲存在了物件的成員中,讀取字串可以直接根據這個長度來讀取,所以就沒必要需要結束標記了。

參考: