问答详情
源自:4-14 Java 循环语句之多重循环

打印输出区别

System.out.print与System.out.println的区别

提问者:慕工程043235 2018-06-01 20:06

个回答

  • sky_i
    2018-06-02 14:41:17

    System.out.print 不换行。举个例子,下面的代码:

    System.out.print("hello ");
    System.out.print("hello ");

    输出结果为:

    hello hello

    System.out.println 会在输出最后换行。如下面的代码:

    System.out.println("hello ");
    System.out.println("hello ");

    输出结果为:

    hello 
    hello


  • 沉舟6
    2018-06-01 20:51:44

    百度的

  • 沉舟6
    2018-06-01 20:49:54

    System.out.print和System.out.println区别是前面的不换行,后面的最后会换行
    条件表达式的返回类型应该看第2和第3个的类型吧:
    (1)如果第2和第3个数据的类型一致,那么就返回这个类型
    (2)如果一个类型是byte、short或者char,而且另一个是int常量(注意是常量),而且这个常量可以用前面的类型来表示,所以返回的应该就是前面的3个类型之一,具体看是3个的哪一个。。
    (3)如果不符合(1)(2),则第2和第3数据的类型自动比较,实现向下转型,即小类型向大类型转换,低精度向高精度转换,最后返回的是大类型或者高精度的类型
    希望对你有帮助