c – 如何将std :: vector转换为QByteArray?

前端之家收集整理的这篇文章主要介绍了c – 如何将std :: vector转换为QByteArray?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图从std :: vector创建QByteArray.我试过;
std::vector<uint8_t> buf;
QByteArray img = new QByteArray(reinterpret_cast<const char>(buf),buf.size());

但是它给出了错误;

error: invalid cast from type 'std::vector<unsigned char,std::allocator<unsigned char> >' to type 'const char'

解决方法

你需要转换buf.data()而不是buf:
QByteArray* img = new QByteArray(reinterpret_cast<const char*>(buf.data()),buf.size());
原文链接:https://www.f2er.com/c/116955.html

猜你在找的C&C++相关文章