16

Do you have a better way to do that ?

QString str("I am a long long long"
              + QString("long long long")
              + QString("long QString") );

I don't like all this QString.

2 Answers 2

37

In C++ string literals are automatically concatenated when placed next to each other.

QString str("I am a long long long"
    "long long long"
    "long QString");
Sign up to request clarification or add additional context in comments.

Comments

-1

the QT way :

#include <QString>

QString myStr = QStringLiteral("");

Start typing, when you press return, he will auto add the " and open a new line starting with ".

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.