共计 386 个字符,预计需要花费 1 分钟才能阅读完成。
在 Java 中,可以使用 \n
或者 \r\n
来表示换行。例如:
System.out.println("Hello World!");
System.out.println("This is a new line.");
输出:
Hello World!
This is a new line.
或者使用 System.out.print()
方法,然后在需要换行的地方使用 System.out.println()
方法。例如:
System.out.print("Hello World!");
System.out.println("This is a new line.");
输出:
Hello World!This is a new line.
注意:在 Windows 环境下,使用的换行符是\r\n
,在 Unix 环境下,使用的换行符是\n
。在大部分操作系统中,Java 会根据运行环境自动选择正确的换行符。
丸趣 TV 网 – 提供最优质的资源集合!
正文完