2022年5月17日

摘要: System.out.println(cmp(5,10)); System.out.println(cmp((short)5,(short)10)); public static boolean cmp(int a,int b){ return a == b; } public static boo 阅读全文

posted @ 2022-05-17 13:18 LutixiaGit 阅读(13) 评论(0) 推荐(0) 编辑

摘要: 形参:方法中定义的参数(int num) 实参:方法中调用的参数 (10) public class Find_word { public static void main(String[] args){ isNumber(10); int number = 11; isNumber(number) 阅读全文

posted @ 2022-05-17 13:07 LutixiaGit 阅读(47) 评论(0) 推荐(0) 编辑

摘要: 数组个数:arr.lenth for(int i = 0 ;i<arr.length;i++){ System.out.println(arr[i]); } 数组遍历。 阅读全文

posted @ 2022-05-17 00:29 LutixiaGit 阅读(15) 评论(0) 推荐(0) 编辑

摘要: package CAK; public class AK { public static void main(String[] args) { int[] arr = new int[3]; System.out.println(arr);//内存地址 System.out.println(arr[ 阅读全文

posted @ 2022-05-17 00:12 LutixiaGit 阅读(54) 评论(0) 推荐(0) 编辑