gpt4 book ai didi

c++ - 将 NULL 视为 QByteArray 中的字符

转载 作者:行者123 更新时间:2023-11-28 01:20:17 24 4
gpt4 key购买 nike

我正在使用 QT4.8,我需要将一个数组发送到另一个包含一些 0x00 值的设备。但是,QByteArray 将 0x00 值视为字符串的末尾。我想知道这是否可能,我正在努力实现的目标。这是我的测试代码:-

zeroissue::zeroissue(QWidget *parent, Qt::WFlags flags)
: QMainWindow(parent, flags)
{
ui.setupUi(this);
unsigned char zero = 0x00;
QByteArray test;
test.append("this is a test");
test.append(zero);
test.append("test complete");
qDebug() << "test = " << test;
}

请建议我一种将 0x00 视为 QByteArray 中的字符的方法。

最佳答案

I wonder if it is even possible,

是的,是的。来自 QByteArray's documentation :

QByteArray can be used to store both raw bytes (including '\0's) and traditional 8-bit '\0'-terminated strings.

下面的 main 函数按预期工作

int main(int argc, char** argv)
{
char null_char = '\0';
QByteArray test;
test.append("this is a test");
std::cout << "size(): " << test.size() << std::endl;

test.append(null_char);
std::cout << "size(): " << test.size() << std::endl;

test.append("test complete");
std::cout << "size(): " << test.size() << std::endl;

return 0;
}

并产生以下预期输出:

size(): 14
size(): 15
size(): 28

当你使用

qDebug() << "test = " << test;

您应该在输出中看到嵌入的空字符。参见 https://doc.qt.io/qt-5/qdebug.html#operator-lt-lt-20了解更多详情。

关于c++ - 将 NULL 视为 QByteArray 中的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56607891/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com