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

时间:2014-07-04 11:17:49

标签: 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));

我完全不知道那个故障的原因。为什么我不能使用=+运营商?这是内置于C ++中的!我拥有的一切(我认为我已经)已经适时地宣布并检查了这些。我是Qt的初学者,所以也许我做错了什么。我一直在寻找互联网的解决方案,但不幸的是,根据我的问题找不到任何东西。下面我发布标题&#39; s我使用和变量声明:

#include "scores.h"
#include "cstdio"
#include "ui_scores.h"
#include "cstdlib"
#include "iostream"
#include "string"
int n,m,sx,a;
QString mode, exclude;

我的构造函数代码(包括&#34;坏&#34;行):

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));
}

2 个答案:

答案 0 :(得分:1)

使用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());

有关QStringQTextStream的详细信息,请参阅Qt文档。

答案 1 :(得分:-1)

替换此声明

std::string wyniki = "apg -q -n " + n + " -m " + m + " -x " + sx + " -a " + a;

std::string wyniki = std::string( "apg -q -n " ) + n + " -m " + m + " -x " + sx + " -a " + a;

前提是所有操作数都有char []或char *类型。

否则,如果变量n的类型为int,则写入

std::string wyniki = "apg -q -n " + std::to_string( n ) + " -m " + m + " -x " + sx + " -a " + a;

考虑到只有std :: string类型的对象重载了operator +。

更新帖子后,您的“坏线”必须看起来像

std::string wyniki = "apg -q -n " + std::to_string( n ) + " -m " + 
                     std::to_string( m ) + " -x " + 
                     std::to_string( sx ) + " -a " + std::to_string( a );

如果QString有一个隐式转换运算符const char *,那么而不是

if(a==1)wyniki += " -M " + mode; //badline 

你必须写

if(a==1)wyniki += std::string( " -M " ) + mode;