Java 中的換行程式碼為 "\n",透過在字串中使用或在 println() 方法中使用可以實現換行。
Java 中換行的程式碼
在Java 中,換行的程式碼是\n
,它表示換行符。
如何使用換行程式碼
在Java 中,有兩種方法可以使用換行程式碼:
在字串中使用:
<code class="java">String str = "第一行\n第二行"; // 打印换行后的字符串 System.out.println(str);</code>
在println() 方法中使用:
<code class="java">System.out.println("第一行"); System.out.println("第二行");</code>
##效果
無論使用哪種方法,\n 字元都會導致文字在控制台中換行。
範例
<code class="java">// 在字符串中使用换行 String str = "姓名:张三\n年龄:30"; System.out.println(str); // 在 println() 方法中使用换行 System.out.println("姓名:" + "张三"); System.out.println("年龄:" + "30");</code>
輸出結果
<code>姓名:张三 年龄:30 姓名:张三 年龄:30</code>
以上是java中換行的程式碼是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!