将 char* 转换为 std::vector

2022-01-12 00:00:00 char vector c++

是否有快速 (CPU) 方法将 char 数组转换为 std::vector<char>?

Is there a fast (CPU) way to cast a char array into a std::vector<char>?

我的函数如下所示:

void someFunction(char* data, int size)
{
    // Now here I need to make the std::vector<char>
    // using the data and size.
}

推荐答案

你不能在这里投射"任何东西,但是你可以很容易地从 C 字符串构造一个向量:

You can't "cast" anything here, but you can easily construct a vector from the C string:

std::vector<char> v(data, data + size);

这将创建一个副本.

相关文章