在 C 中,定义多行字符串文字并不像 Perl 等其他语言那样简单。但是,您可以使用一些技术来实现此目的:
一种方法是利用 C 中相邻字符串文字由编译器连接的事实。通过将字符串分成多行,您可以创建单个多行字符串:
const char *text = "This text is pretty long, but will be " "concatenated into just a single string. " "The disadvantage is that you have to quote " "each part, and newlines must be literal as " "usual.";
请注意,缩进并不重要,因为它位于引号之外。
另一种方法涉及使用带有转义换行符的字符串文字。您可以使用反斜杠 () 对它们进行转义,而不是在字符串本身中使用换行符,如下所示:
const char *text2 = "Here, on the other hand, I've gone crazy \\ and really let the literal span several lines, \\ without bothering with quoting each line's \\ content. This works, but you can't indent.";
请记住,反斜杠必须紧接在每行末尾之前以转义换行符。此方法有效,但会阻止保留缩进。
以上是如何在 C 中创建多行字符串文字?的详细内容。更多信息请关注PHP中文网其他相关文章!