慕工程043235
2018-06-01 20:06
System.out.print与System.out.println的区别
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
百度的
System.out.print和System.out.println区别是前面的不换行,后面的最后会换行
条件表达式的返回类型应该看第2和第3个的类型吧:
(1)如果第2和第3个数据的类型一致,那么就返回这个类型
(2)如果一个类型是byte、short或者char,而且另一个是int常量(注意是常量),而且这个常量可以用前面的类型来表示,所以返回的应该就是前面的3个类型之一,具体看是3个的哪一个。。
(3)如果不符合(1)(2),则第2和第3数据的类型自动比较,实现向下转型,即小类型向大类型转换,低精度向高精度转换,最后返回的是大类型或者高精度的类型
希望对你有帮助
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题