在 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.";
記住,反斜線必須緊接在每行末尾之前,以轉義換行符。此方法有效,但會阻止保留縮排。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3