Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将字节缓冲区转换为双向量。调用函数传递一个 byte* 变量。在接收端,我必须将字节缓冲区添加到双向量中。我该怎么做。请帮忙。
您不能将指向字节的指针转换为std:vector<double>. 你必须找出,你必须阅读规范。可能您需要请求规范。
std:vector<double>
Abyte*有时用作指向某物的通用类型。如果它指向超过一个字节,您至少需要两件事:
byte*
询问您的客户(可能是您自己?)。