C++ (Qt)bool boolValue = false;const QVariant varValue(boolValue);const QString strValue(varValue.toString());
boolean?QString("true"):QString("false")
C++ (Qt) // bool2QString bool b = true QString str = QString::number(b); //QString2bool bool b1 = str.toInt();