-2

Suppose I executed the following Java method:

public static void print() {
    System.out.print("This is some text");
    System.out.println();
}

How many lines of output are printed? What counts as a "line of output"? I would think there are two, but I really don't know.

4

3 回答 3

0

会打印一行输出,因为System.out.print("This is some text")不会自动将光标移动到新行,而是System.out.println()不带参数只是打印新行,所以整体效果和 一样System.out.println("This is some text"),即一行输出。

您可以通过查看该类的文档来了解更多信息。PrintStream

于 2012-10-11T22:32:07.507 回答
0

一条线

System.out.print("这是一段文字"); <-- 这是没有换行的输出

System.out.println(); <-- 这将打印一个换行符

您可以将“输出行”定义为任何输出到换行符(包括光标)

于 2012-10-11T22:35:24.220 回答
0
System.out.print("text") 

在同一行打印“文本”,不附加换行符。

System.out.println("text")

在一行上打印“文本”,然后添加换行符 (\n)

于 2012-10-11T22:45:18.603 回答