QT中获取 QByteArray对象字节大小
时间: 2024-02-25 08:53:16 浏览: 172
Qt中QString、QByteArray、int、double之间转换 - 苦涩的茶 - 博客园1
你可以使用 QByteArray 的 size() 或者 length() 方法来获取 QByteArray 对象的字节大小,示例代码如下:
```cpp
QByteArray byteArray("Hello world!");
int size = byteArray.size(); // 或者使用 int size = byteArray.length();
qDebug() << "Byte array size: " << size;
```
输出结果将会是:
```
Byte array size: 12
```
阅读全文