我正在尝试这样做:
QString string;
// do things...
std::cout << string << std::endl;
但是代码不能编译。 如何将qstring的内容输出到控制台(例如用于调试目的或其他原因)?如何将QString转换为std::string?
我正在尝试这样做:
QString string;
// do things...
std::cout << string << std::endl;
但是代码不能编译。 如何将qstring的内容输出到控制台(例如用于调试目的或其他原因)?如何将QString转换为std::string?
当前回答
QString data;
data.toStdString().c_str();
甚至可以抛出异常VS2017编译器在xstring
~basic_string() _NOEXCEPT
{ // destroy the string
_Tidy_deallocate();
}
正确的方法(安全-没有例外)是Artyom上面解释的
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();
其他回答
提议的替代方案:
QString qs;
std::string current_locale_text = qs.toLocal8Bit().constData();
可能是:
QString qs;
std::string current_locale_text = qPrintable(qs);
参见qPrintable文档,一个从QtGlobal传递const char *的宏。
当将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 data;
data.toStdString().c_str();
甚至可以抛出异常VS2017编译器在xstring
~basic_string() _NOEXCEPT
{ // destroy the string
_Tidy_deallocate();
}
正确的方法(安全-没有例外)是Artyom上面解释的
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();
试试这个:
#include <QDebug>
QString string;
// do things...
qDebug() << "right" << string << std::endl;