Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
それを行うためのより良い方法はありますか?
QString str("I am a long long long" + QString("long long long") + QString("long QString") );
私はこのすべての QString が好きではありません。
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");