2016年5月13日

摘要: String str = "asdfghjkl"; String str1 = "asd"; // 通过首位字母的索引比较 if (str.indexOf("asd") == 0) { System.out.println("true"); } String str2 = "jkl"; if (st 阅读全文
posted @ 2016-05-13 22:21 煜渝 阅读(1098) 评论(0) 推荐(0) 编辑
摘要: 1、 Java中值类型和引用类型的不同? [定义] 引用类型表示你操作的数据是同一个,也就是说当你传一个参数给另一个方法时,你在另一个方法中改变这个变量的值, 那么调用这个方法是传入的变量的值也将改变.值类型表示复制一个当前变量传给方法, 当你在这个方法中改变这个变量的值时,最初生命的变量的值不会变 阅读全文
posted @ 2016-05-13 21:54 煜渝 阅读(176) 评论(0) 推荐(0) 编辑
摘要: Random r=new Random(); int arr[]=new int [10]; for(int i=0;i<arr.length;i++) { arr[i]=r.nextInt(100); } System.out.println("随机生成的数组为:"); for(int j:arr 阅读全文
posted @ 2016-05-13 13:08 煜渝 阅读(174) 评论(0) 推荐(0) 编辑

导航