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.
Qtクリエーター2.4を使用しています。コードで言う文字列を使用する必要がありhi"world"ます。私は使用しようとしましたQstringが、エスケープ シーケンス文字であることはstd::stringわかっ/ていますが、IDE はそれをエスケープ シーケンスとして認識せず、次のように記述するとエラーが発生します。
hi"world"
Qstring
std::string
/
"hi/"world/""
に変換できる任意の文字列形式を使用できますQstring。私が間違っていることはありますか?
次のように使用します。
QString output = "Hi \"world\"!";