c++ - 在 Qt 中使用 += 运算符时出错

标签 c++ qt compiler-errors stdstring qstring

我在 Qt Creator 中创建了一个小应用程序。我希望在我的 QDialog 中使用此代码构造函数,但它不起作用。

std::string wyniki = "apg -q -n " + n + " -m " + m + " -x " + sx + " -a " + a;
if(exclude != "") wyniki+=" -E " + exclude.toUtf8().constData();
if(a==1)wyniki += " -M " + mode;
std::string result = exec(wyniki.c_str());
ui->plainTextEdit->setPlainText(qstr(result));

编译器消息:
../APG-GUI/scores.cpp: In constructor 'Scores::Scores(QWidget*, int, int, int, int, QString, QString)':
../APG-GUI/scores.cpp:36:45: error: invalid operands of types 'const char*' and 'const char [5]' to binary 'operator+'
     std::string wyniki = "apg -q -n " + n + " -m " + m + " -x " + sx + " -a " + a;
                                             ^
../APG-GUI/scores.cpp:37:67: error: invalid operands of types 'const char [5]' and 'const char*' to binary 'operator+'
     if(exclude != "") wyniki+=" -E " + exclude.toUtf8().constData();
                                                                   ^
../APG-GUI/scores.cpp:38:20: error: no match for 'operator+=' (operand types are 'std::string {aka std::basic_string<char>}' and 'const QString')
     if(a==1)wyniki += " -M " + mode;
                    ^
../APG-GUI/scores.cpp:38:20: note: candidates are:
In file included from /usr/include/c++/4.9/string:52:0,
                 from /opt/Qt/5.3/gcc_64/include/QtCore/qstring.h:50,
                 from /opt/Qt/5.3/gcc_64/include/QtCore/qobject.h:49,
                 from /opt/Qt/5.3/gcc_64/include/QtWidgets/qwidget.h:46,
                 from /opt/Qt/5.3/gcc_64/include/QtWidgets/qdialog.h:45,
                 from /opt/Qt/5.3/gcc_64/include/QtWidgets/QDialog:1,
                 from ../APG-GUI/scores.h:4,
                 from ../APG-GUI/scores.cpp:1:
/usr/include/c++/4.9/bits/basic_string.h:949:7: note: std::basic_string<_CharT, _Traits, _Alloc>& std::basic_string<_CharT, _Traits, _Alloc>::operator+=(const std::basic_string<_CharT, _Traits, _Alloc>&) [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>]
       operator+=(const basic_string& __str)
       ^
/usr/include/c++/4.9/bits/basic_string.h:949:7: note:   no known conversion for argument 1 from 'const QString' to 'const std::basic_string<char>&'
/usr/include/c++/4.9/bits/basic_string.h:958:7: note: std::basic_string<_CharT, _Traits, _Alloc>& std::basic_string<_CharT, _Traits, _Alloc>::operator+=(const _CharT*) [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>]
       operator+=(const _CharT* __s)
       ^
/usr/include/c++/4.9/bits/basic_string.h:958:7: note:   no known conversion for argument 1 from 'const QString' to 'const char*'
/usr/include/c++/4.9/bits/basic_string.h:967:7: note: std::basic_string<_CharT, _Traits, _Alloc>& std::basic_string<_CharT, _Traits, _Alloc>::operator+=(_CharT) [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>]
       operator+=(_CharT __c)
       ^
/usr/include/c++/4.9/bits/basic_string.h:967:7: note:   no known conversion for argument 1 from 'const QString' to 'char'
../APG-GUI/scores.cpp:39:45: error: no matching function for call to 'Scores::exec(const char*)'
     std::string result = exec(wyniki.c_str());
                                             ^
../APG-GUI/scores.cpp:39:45: note: candidate is:
In file included from /opt/Qt/5.3/gcc_64/include/QtWidgets/QDialog:1:0,
                 from ../APG-GUI/scores.h:4,
                 from ../APG-GUI/scores.cpp:1:
/opt/Qt/5.3/gcc_64/include/QtWidgets/qdialog.h:93:17: note: virtual int QDialog::exec()
     virtual int exec();
                 ^
/opt/Qt/5.3/gcc_64/include/QtWidgets/qdialog.h:93:17: note:   candidate expects 0 arguments, 1 provided
../APG-GUI/scores.cpp:40:48: error: 'qstr' was not declared in this scope
     ui->plainTextEdit->setPlainText(qstr(result));

我完全不知道该故障的原因。为什么我不能使用 =+运算符(operator)?这是内置在 C++ 中的!我拥有的一切(我想我拥有的)都正确地声明并检查过。我是 Qt 的初学者,所以也许我做错了什么。我在互联网上寻找解决方案,但不幸的是,根据我的问题没有找到任何东西。下面我发布我使用的标题和变量声明:
#include "scores.h"
#include "cstdio"
#include "ui_scores.h"
#include "cstdlib"
#include "iostream"
#include "string"
int n,m,sx,a;
QString mode, exclude;

我的构造函数代码(包括“坏”行):
Scores::Scores(QWidget *parent, int nk, int mk, int xk, int ak, QString modesk, QString excludek) :
    QDialog(parent),
    ui(new Ui::Scores)
{
    n = nk;
    m = mk;
    a = ak;
    mode = modesk;
    sx = xk;
    exclude = excludek;
    ui->setupUi(this);
    std::string wyniki = std::string("apg -q -n ") + n + " -m " + m + " -x " + sx + " -a " + a; //badline
    if(exclude != "") wyniki+=" -E " + exclude.toUtf8().constData(); //badline
    if(a==1)wyniki += " -M " + mode; //badline 
    std::string result = exec(wyniki.c_str()); //badline
    ui->plainTextEdit->setPlainText(qstr(result));
}

最佳答案

使用QString作为主要字符串类型:

QString result = QString("apg -q -n %1 -x %2 -y %3").arg(n).arg(x).arg(y);

或使用 QTextStream组装一切。
QString result;
QTextStream ts(&result);
ts << "apg -q -n " << n << " -x " << x;

使用 std::string.arg() :
std::string x = "xxx";
QString result = QString("xxx -x %1").arg(x.c_str());

有关 QString 的详细信息,请参阅 Qt 文档。和 QTextStream .

关于c++ - 在 Qt 中使用 += 运算符时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24573111/

相关文章:

c++ - 如何在 C++ 或 Python 中验证图像文件的完整性?

java - 在 JTextField 上添加 changeListener 时出错

java - “找不到符号”或“无法解析符号”错误是什么意思?

c++ - remove_reference 如何禁用模板参数推导?

c++ - Visual C++ 可再发行再发行

c++ - 切换 QDeclarativeView 的源

c++ - 无法在 Windows 上为 BlackBerry 10 构建 Qt5

C编译器认为char类型是int类型 - clang编译器

c++ - 如何让这个模板类编译?

qt - 如何将 UI QWidget 添加到 UI QWidget?