我正在尝试这样做:

QString string;
// do things...
std::cout << string << std::endl;

但是代码不能编译。 如何将qstring的内容输出到控制台(例如用于调试目的或其他原因)?如何将QString转换为std::string?


当前回答

最简单的方法是QString::toStdString()。

其他回答

当将QString转换为std::string时,你应该记住的一件事是,QString是UTF-16编码的,而std::string…可能有任何编码。

所以最好的选择是:

QString qs;

// Either this if you use UTF-8 anywhere
std::string utf8_text = qs.toUtf8().constData();

// or this if you're on Windows :-)
std::string current_locale_text = qs.toLocal8Bit().constData();

如果指定了编解码器,建议的(可接受的)方法可能有效。

见:http://doc.qt.io/qt-5/qstring.html toLatin1

如果您的最终目标是将调试消息发送到控制台,则可以使用qDebug()。

你可以用,

qDebug() < <字符串;它将把内容打印到控制台。

这种方式比仅仅为了调试消息而将其转换为std::string更好。

最简单的方法是QString::toStdString()。

最好的方法是重载操作符<<你自己,这样QString就可以作为类型传递给任何期望输出类型的库。

std::ostream& operator<<(std::ostream& str, const QString& string) {
    return str << string.toStdString();
}

试试这个:

#include <QDebug>
QString string;
// do things...
qDebug() << "right" << string << std::endl;