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.
我是一个新手程序员,我想知道字符串是否可以有转义序列。
例如,是否有可能有一个字符串看起来像
string s = "Hi\n\nI'm\n\nBob!\n\n";
所以当我cout << s;
cout << s
它看起来像
Hi I'm Bob!
? 提前致谢!
来自http://en.wikipedia.org/wiki/Escape_sequence#Programming_languages
在许多编程语言中,转义序列用于字符和字符串
是的,您的示例将准确产生该输出