2

我可以在 C++ 中使用支持嵌入 NULL 字符的字符串吗?

我的问题是:使用嵌入的 NULL 构造字符串,因此将其作为字节数组发送到 C++ DLL。

    string inputStr("he\0llo", 6);
    int byteLength = 6;
    BYTE *inputByte = (BYTE*)(char*)inputStr.c_str();
    ApplyArabicMapping(inputByte , byteLength);
4

2 回答 2

2

是的,std::string支持存储NULL字符,因为它不是-NULL终止的。您可以通过多种方式创建一个:

string str("he\0llo", 6);
str.append(1, '\0');
str.push_back('\0');
const char[] cstr = "hell\0o";
string str2(cstr, cstr + sizeof(cstr) - 1); // - 1 for the NULL
于 2012-04-04T11:14:20.577 回答
2

您可以使用counted strings,其中字符缓冲区与其“内容长度”一起存储;这允许您嵌入任何字符。std::string,例如,是一种计数字符串。

显然,您不能将这样的字符串传递给需要经典 C 字符串的函数,因为它会将遇到的第一个 null 视为字符串终止符。

于 2012-04-04T11:14:26.340 回答