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\"!";