2019年2月25日

摘要: java的api没用翻转数组的工具类,只能自己写了。 阅读全文

posted @ 2019-02-25 17:42 猫头唔食鱼 阅读(1131) 评论(0) 推荐(0) 编辑

摘要: 都说Java初始化数组只有两种写法,其实不是的吧: // 写法一 int a []= {1,2,3}; // 写法二 int b[] = new int [5]; b[0] = 1; b[1] = 2; b[2] = 3; // 写法三 int c [] = new int []{1,2,3}; 打 阅读全文

posted @ 2019-02-25 15:46 猫头唔食鱼 阅读(177) 评论(0) 推荐(0) 编辑

摘要: 1.函数名相同 2.参数个数不同或者参数类型不同 3.函数重载和返回值类型无关 //函数的重载 public static void get() { System.out.println("123"); } public static int get(int a ) { return a ; } 4 阅读全文

posted @ 2019-02-25 15:12 猫头唔食鱼 阅读(2674) 评论(0) 推荐(0) 编辑

摘要: //导入 scanner的包 import java.util.Scanner; Scanner scanner = new Scanner(System.in); System.out.println("请输入数据"); int num = scanner.nextInt(); System.out.println("你输入的数据是:"+num); 阅读全文

posted @ 2019-02-25 11:02 猫头唔食鱼 阅读(298) 评论(0) 推荐(0) 编辑

摘要: Java数据类型,从小到大排序 byte ,short ,int ,long ,float, double,char 1.小数据类型转换大的数据类型,自动转换 2.大数据类型转换小数据类型,强制转换 3.两个不同数据类型的数据运算结果,取决于大的数据类型。 4.byte ,short ,char 在 阅读全文

posted @ 2019-02-25 10:53 猫头唔食鱼 阅读(164) 评论(0) 推荐(0) 编辑