VS2017 c++长字符串换行自动补全引号
时间: 2023-12-02 09:57:50 浏览: 159
你可以使用反斜线符号 "\" 来实现长字符串的换行,然后使用自动补全功能来自动添加引号。
例如:
```c++
std::string longStr = "This is a very long string that needs to be split \
into multiple lines. The backslash symbol allows \
us to do this without having to manually add \
the quote marks on each line.";
```
在键入最后一个反斜线符号后,按下回车键,自动补全功能会自动添加引号并将光标移动到下一行。
注意:反斜线符号和下一行的内容之间不能有空格。
阅读全文