一.在Java中,以下代码段有错误的是第( )行 public static void main(String[] args) { String name = "小新"; //第一行 String sex = new String("男"); //第二行 String age = 18+""; //第三行 int len = name.le…
public class Use{ public static void main(String[] args){ int[] arr=new int[]{19,10,20,30,23,13}; //计算上面定义数组的长度 int len=arr.length; //字符创长度的获取与数组的长度获取有区别 String str="123456789"; int length=str.length(); //定义一个list集合 List list=new ArrayList(); li…
整数 一.整数反转_7 /* 12345 变成 54321 */ public class 整数反转_7 { public static void main(String[] args){ int x = 12345; System.out.println(reverseInt(x)); } public static int reverseInt(int x){ int res = 0; while (x != 0){ int pop = x % 10; if (res > Integer.M…
返回零长度的数组或集合,而不是null 像下面的方法并不少见: private final List<Cheese> cheesesInStock = ...; /** * @return an array containing all of the cheeses in the shop, * or null if no cheese are available for purchase. */ public Cheese[] getCheeses(){ if(cheesesInStoc…