本文最后更新于:3 years ago
最近在学JAVA,以后还是想往JAVA后端发展的,大二开始学习还是有点晚了,所以要多付出一点才可以。 现在大概学习到了有关JAVA类的学习了,但是发现缺少代码的累计,我怕后面可能会忘记一些小细节或者某些简单的类中的方法使用,这里记录一下,以便后面可以及时复习。由于初学JAVA,所以一些标准语法可能说的不是很准确。这里也仅仅只是简单的记录一下,不会涉及太深,比较初学,由浅入深嘛
Scanner类 Scanner类可以实现键盘的输入,到程序当中去。
nextInt():获取键盘输入数字; next():获取键盘输入字符串;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 import java.util.Scanner public class Demo01Scanner { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int num = sc.nextInt(); System.out.println("输入的数字是:" + num); String str = sc.next(); System.out.println("输入的字符串是:" + str); } }
输出显示:
04 输入的数字是:4 admin 输入的字符串是:admin
再贴出两个小例子
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 import java.util.Scanner;public class Demo02ScannerSum { public static void main (String[] args) { Scanner sc = new Scanner(System.in); System.out.println("请输入第一个数字:" ); int a = sc.nextInt(); System.out.println("请输入第二个数字:" ); int b = sc.nextInt(); int result = a + b; System.out.println("结果是:" + result); } }
输出显示:
请输入第一个数字: 23 请输入第二个数字: 45 结果是:68
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 public class Demo03ScannerMax { public static void main (String[] args) { Scanner sc = new Scanner(System.in); System.out.println("请输入第一个数字" ); int a = sc.nextInt(); System.out.println("请输入第二个数字" ); int b = sc.nextInt(); System.out.println("请输入第三个数字" ); int c = sc.nextInt(); int temp = a > b ? a : b; int max = temp > c ? temp : c; System.out.println("最大值为:" + max); } }
输出显示:
请输入第一个数字 23 请输入第二个数字 43 请输入第三个数字 67 最大值为:67
ArrayList类 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 import java.util.ArrayList;public class Demo02ArrayList { public static void main (String[] args) { ArrayList<String> list = new ArrayList<>(); System.out.println(list); list.add("小方①号" ); System.out.println(list); list.add("小方②号" ); list.add("小方③号" ); list.add("小方④号" ); System.out.println(list); } }
方法 这里介绍一下ArrayList中常见的方法,主要有添加,查找,删除和获取长度
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 import java.util.ArrayList;public class Demo03ArrayListMethod { public static void main (String[] args) { ArrayList<String> list = new ArrayList<>(); System.out.println(list); boolean success = list.add("小方①号" ); System.out.println("添加是否成功:" + success); System.out.println(list); list.add("小方②号" ); list.add("小方③号" ); list.add("小方④号" ); System.out.println(list); String name = list.get(2 ); System.out.println("第②号索引位置:" + name); String whoRemove = list.remove(3 ); System.out.println("被删除的人是:" + whoRemove); System.out.println(list); int size = list.size(); System.out.println("集合的长度是:" + size); } }
输出结果:
[] 添加是否成功:true [小方①号] [小方①号, 小方②号, 小方③号, 小方④号] 第②号索引位置:小方③号 被删除的人是:小方④号 [小方①号, 小方②号, 小方③号] 集合的长度是:3
遍历 import java.util.ArrayList;public class Demo04ArrayListEach { public static void main (String[] args) { ArrayList<String> list= new ArrayList<>(); list.add("小方①号" ); list.add("小方②号" ); list.add("小方③号" ); for (int i = 0 ; i < list.size(); i++) { System.out.println(list.get(i)); } } }
基本类型存储 上面我们提到了,泛型只能是引用类型,不能是基础类型。那我们如何实现基本类型的存储呢? 如果希望向集合ArrayList当中存储基本类型数据,必须使用基础数据类型对于的”包装类”。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 import java.util.ArrayList;public class Demo05ArrayListBasic { public static void main (String[] args) { ArrayList<String> ListC = new ArrayList<>(); ArrayList<Integer> listA = new ArrayList<>(); listA.add(100 ); listA.add(200 ); System.out.println(listA); int num = listA.get(1 ); System.out.println("第一号元素是:" + num); } }
输出结果:
Random类 Random类用来生成随机数字。使用其实也是三个步骤,导包->创建->使用。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 import java.util.Random;public class Demo01Random { public static void main (String[] args) { Random r = new Random(); int num = r.nextInt(); System.out.println("随机数是:" + num); } }
Random也可以实现在给定的范围内,获取随机数字,如代码实现:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 import java.util.Random;public class Demo03Random { public static void main (String[] args) { int n = 5 ; Random r = new Random(); for (int i = 0 ; i < 100 ; i++) { int result = r.nextInt(n) + 1 ; System.out.println(result); } } }
玩个游戏,电脑实现随机产生一个数字,你来猜测,如果你输入的值相比于随机产生的值偏大了,电脑反馈太大了,如果你输入的值相比于随机产生的值偏小了,电脑反馈太小了,如果相等,退出游戏。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 import java.util.Random;import java.util.Scanner;public class Demo04RandomGame { public static void main (String[] args) { Random r = new Random(); int randomNum = r.nextInt(100 ) + 1 ; Scanner sc = new Scanner(System.in); while ( true ) { System.out.println("请输入你猜测的数:" ); int guessNum = sc.nextInt(); if ( guessNum < randomNum ) { System.out.println("太小了,请重试" ); }else if ( guessNum > randomNum ) { System.out.println("太大了,请重试" ); }else { System.out.println("恭喜你,猜对了" ); break ; } } System.out.println("游戏结束。" ); } }
贴出一个小例子
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 import java.util.ArrayList;import java.util.Random;public class Demo04ArrayListReturn { public static void main (String[] args) { ArrayList<Integer> bigList = new ArrayList<>(); Random r = new Random(); for (int i = 0 ; i < 20 ; i++) { int num = r.nextInt(10 ) + 1 ; bigList.add(num); } System.out.println(bigList); ArrayList<Integer> smallList = getSmallList(bigList); System.out.println("偶数总共有:" + smallList.size() + "个" ); for (int i = 0 ; i < smallList.size(); i++) { System.out.println(smallList.get(i)); } } public static ArrayList<Integer> getSmallList (ArrayList<Integer> bigList) { ArrayList<Integer> smallList = new ArrayList<>(); for (int i = 0 ; i < bigList.size(); i++) { int num = bigList.get(i); if ( bigList.get(i) % 2 == 0 ){ smallList.add(num); } } return smallList; } }
输出结果:
[5, 5, 4, 1, 10, 1, 6, 9, 3, 7, 6, 2, 3, 9, 2, 4, 10, 1, 9, 1] 偶数总共有:8个 4 10 6 6 2 2 4 10
String类 字符串特点:
字符串的内容永不可变;
正是因为字符串不可改变,所以字符串是可以共享使用的;
字符串效果上相当于是char[]字符数组,但是底层原理是byte[]字节数组。
创建字符串的常见3+1种方式。 三种构造方式: public String():创建一个空白字符串,不含有任何内容 public String(char[] array):根据字符数组的内容,来创建对应的字符串。 public String(byte[] array):根据字符数组的内容,来创建对应的字符串。 一种直接创建: String str[] = “Hello”; //右边直接用双引号
注意:直接写上双引号,就是字符串对象
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 public class Demo01String { public static void main (String[] args) { String str1 = new String(); System.out.println("第①个字符串:" + str1); char [] charArray = { 'A' , 'B' , 'C' }; String str2 = new String(charArray); System.out.println("第②个字符串:" + str2); byte [] byteArray = { 97 , 98 , 99 }; String str3 = new String(byteArray); System.out.println("第③个字符串:" + str3); } }
输出结果:
第①个字符串: 第②个字符串:ABC 第③个字符串:abc
字符串常量池 字符串常量池:程序当中直接写上的双引号字符串,就在字符串常量池中。
对于基本类型来说,==是进行数值的比较 对于引用类型来说,==是进行[地址值]的比较
举个栗子:
public class Demo02StringPool { public static void main (String[] args) { String str1 = "abc" ; String str2 = "abc" ; char [] charArray = { 'a' , 'b' , 'c' }; String str3 = new String(charArray); System.out.println(str1 == str2); System.out.println(str2 == str3); System.out.println(str2 == str3); } }
输出结果:
字符串比较 前面,我们在实现比较的时候,发现,对于引用类型,使用 ==
是进行[地址值]的比较,而不是我们想要的字符串内容的比较。。。 而通过转化成数组一个一个比较,太费力了。 这是java中提供了可以实现String比较的方法,