我可以在 C++ 中使用支持嵌入 NULL 字符的字符串吗?
我的问题是:使用嵌入的 NULL 构造字符串,因此将其作为字节数组发送到 C++ DLL。
string inputStr("he\0llo", 6);
int byteLength = 6;
BYTE *inputByte = (BYTE*)(char*)inputStr.c_str();
ApplyArabicMapping(inputByte , byteLength);
是的,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
您可以使用counted strings,其中字符缓冲区与其“内容长度”一起存储;这允许您嵌入任何字符。std::string
,例如,是一种计数字符串。
显然,您不能将这样的字符串传递给需要经典 C 字符串的函数,因为它会将遇到的第一个 null 视为字符串终止符。