cout输出QString

QString str("Hello");
std::cout << str.toStdString().data();

qDebug输出QString

QString str("Hello");
qDebug() << str;