Qdebug display hex value

前端 未结 9 1471
你的背包
你的背包 2021-02-19 02:56

I am trying to display a number using QDebug in the Hex format. Below is the code which I have written. It is working but the output has string contents enclosed in double quot

9条回答
  •  遥遥无期
    2021-02-19 03:31

    You could format string first:

    int myValue = 0x1234;
    QString valueInHex= QString("%1").arg(myValue , 0, 16);
    qDebug() << "value = " << valueInHex;
    

提交回复
热议问题