我来自C#,我一行:

 byte[] key = Encoding.ASCII.GetBytes("myString");

如何在C++中获得等效的代码以获得std::vector<unsigned char>

最佳答案

这应该有用吗?

unsigned char buffer[mystring.length()];
memcpy(buffer, mystring.data(), mystring.length());

关于c++ - C++等效于C#Encoding.ASCII.GetBytes(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46948808/

10-13 08:22