Can qDebug() output the data in binary format?
For example, I want to check some status variation:
unsigned char status;
...
qDebug() << "Status: " << status;
I want to generate output in a binary format, something like:
Status: 1011
If you want to print in binary you can use:
bin
unsigned char status = 11;
qDebug() << "Status:" << bin << status;
Output:
"Status: 1011"
QString::number()
unsigned char status = 11;
qDebug() << "Status:" << QString::number(status, 2);
Output:
"Status: 1011"
QString::arg()
unsigned char status = 11;
// to print as string with 8 characters padded with '0'
qDebug() << "Status1:" << QString("%1").arg(status, 8, 2, QChar('0'));
// use noquote() if you do not want to print the quotes
qDebug().noquote() << "Status2:" << QString("%1").arg(status, 8, 2, QChar('0'));
Output:
Status1: "00001011"
Status2: 00001011
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With