我正在尝试这样做:
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?
当前回答
如果您的最终目标是将调试消息发送到控制台,则可以使用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();
你可以用这个;
QString data;
data.toStdString().c_str();
试试这个:
#include <QDebug>
QString string;
// do things...
qDebug() << "right" << string << std::endl;
QString qstr;
std::string str = qstr.toStdString();
但是,如果你使用的是Qt:
QTextStream out(stdout);
out << qstr;
你可以使用:
QString qs;
// do things
std::cout << qs.toStdString() << std::endl;
它内部使用QString::toUtf8()函数来创建std::string,所以它也是Unicode安全的。下面是QString的参考文档。