2022年1月9日开始 1-2章 2022年1月17日完毕

image.png
image.pngimage.pngimage.pngimage.pngimage.png
image.pngimage.png

程序:计算机执行某些操作或解决某个问题而编写的一系列有序指令的集合。

image.pngimage.pngimage.png

特性

image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png
image.pngimage.png
image.pngimage.pngimage.pngimage.png

学习方法

image.pngimage.pngimage.pngimage.pngimage.png
image.png
image.pngimage.pngimage.pngimage.pngimage.png

dos 命令

image.pngimage.pngimage.png

本章作业

image.png

  1. 1. JDK = JRE + java开发工具
  2. 2. JRE = JVM + 核心类库
  3. //环境变量path配置及其作用
  4. 1. 环境变量的作用是为了在dos的任意目录,可以去使用java javac命令
  5. 2. 先配置 JAVA_HOME = 指向jdk安装的主目录
  6. 3. 编辑path环境变量,增加 %JAVA_HOME%\bin
  7. //Java编写步骤
  8. 1. 编写java的源代码
  9. 2. javac 编译 ,得到对应的 .class 字节码文件
  10. 3. java 运行, 本质就是把 .class 加载到jvm 运行
  11. //Java编写7个规范
  12. 1. 类,方法的注释,使用javadoc的方式,即文档注释
  13. 2. javadoc注释,往往是对代码的说明(给程序的维护者),说明如何修改,注意事项
  14. 3. 使用tab ,整体将代码右移, 使用 shift+tab 整体左移
  15. 4. 运算符和 = 的两边,给空格,代码看上去清楚 int n = 1 + 4;
  16. 5. 源码文件使用 utf-8编码
  17. 6. 行宽字符不要超过 80
  18. 7. 代码编程风格有两种 次行风格,行尾风格(推荐)
  19. //初学者java易犯错误
  20. 1. 编译或者运行时,找不到文件 javac Hell0.java, 把文件名或者目录找对
  21. 2. 主类名和文件名不一致 , 修改时保持一致即可
  22. 3. 缺少;
  23. 4. 拼写错误,比如 1 -> l 0->0, void -> viod , 要求写代码时,一定要小心
  24. 强调: 先思考->自己练习->看老师评讲

3章-4章 2022年1月17日 2022年1月18日

变量

image.png
image.png
变量相当于内存中一个数据存储空间的表示,你可以把变量看做是一个房间的门牌号,通过门牌号我们可以找到房 间,而通过变量名可以访问到变量(值)。 image.pngimage.png

数据类型

image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png

  1. public class CharDetail {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. //在java中,char的本质是一个整数,在默认输出时,是unicode码对应的字符
  5. //要输出对应的数字,可以(int)字符
  6. char c1 = 97;
  7. System.out.println(c1); // a
  8. char c2 = 'a'; //输出'a' 对应的 数字
  9. System.out.println((int)c2);
  10. char c3 = '韩';
  11. System.out.println((int)c3);//38889
  12. char c4 = 38889;
  13. System.out.println(c4);//韩
  14. //char类型是可以进行运算的,相当于一个整数,因为它都对应有Unicode码.
  15. System.out.println('a' + 10);//107
  16. //课堂小测试
  17. char c5 = 'b' + 1;//98+1==> 99
  18. System.out.println((int)c5); //99
  19. System.out.println(c5); //99->对应的字符->编码表ASCII(规定好的)=>c
  20. }
  21. }

image.pngimage.pngimage.pngimage.pngimage.pngimage.png

类型转换

image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png
image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png

运算符 4章

image.pngimage.pngimage.png
image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png

5章 2022年1月18日 -2022年1月20日

流程控制

image.pngimage.png

分支

image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png

switch

image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png

for循环

image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png

多重循环

image.pngimage.pngimage.pngimage.png

  1. // 打印九九乘法表
  2. for(int i=1; i <= 9; i++){
  3. for(int j=1;j <= i;j++){
  4. System.out.print(j+"x"+i+"="+i*j+"\t");
  5. }
  6. System.out.println();
  7. }
  8. 2. 打印半个金字塔
  9. * //第 1 层 有 1 个*
  10. ** //第 2 层 有 2 个*
  11. *** //第 3 层 有 3 个*
  12. **** //第 4 层 有 4 个*
  13. ***** //第 5 层 有 5 个*
  14. 3. 打印整个金字塔
  15. * //第 1 层 有 1 个* 2 * 1 -1 有 4=(总层数-1)个空格
  16. *** //第 2 层 有 3 个* 2 * 2 -1 有 3=(总层数-2)个空格
  17. ***** //第 3 层 有 5 个* 2 * 3 -1 有 2=(总层数-3)个空格
  18. ******* //第 4 层 有 7 个* 2 * 4 -1 有 1=(总层数-4)个空格
  19. ********* //第 5 层 有 9 个* 2 * 5 -1 有 0=(总层数-5)个空格
  20. 4. 打印空心的金字塔 [最难的]
  21. * //第 1 层 有 1 个* 当前行的第一个位置是*,最后一个位置也是*
  22. * * //第 2 层 有 2 个* 当前行的第一个位置是*,最后一个位置也是*
  23. * * //第 3 层 有 2 个* 当前行的第一个位置是*,最后一个位置也是*
  24. * * //第 4 层 有 2 个* 当前行的第一个位置是*,最后一个位置也是*
  25. ********* //第 5 层 有 9 个* 全部输出*
  26. 先死后活
  27. 韩顺平循序渐进学 Java 零基础
  28. 132
  29. 5 层数做成变量 int totalLevel = 5;
  30. //小伙伴 技术到位,就可以很快的把代码写出
  31. */
  32. int totalLevel = 20; //层数
  33. for(int i = 1; i <= totalLevel; i++) { //i 表示层数
  34. //在输出*之前,还有输出 对应空格 = 总层数-当前层
  35. for(int k = 1; k <= totalLevel - i; k++ ) {
  36. System.out.print(" ");
  37. }
  38. //控制打印每层的*个数
  39. for(int j = 1;j <= 2 * i - 1;j++) {
  40. //当前行的第一个位置是*,最后一个位置也是*, 最后一层全部 *
  41. if(j == 1 || j == 2 * i - 1 || i == totalLevel) {
  42. System.out.print("*");
  43. } else { //其他情况输出空格
  44. System.out.print(" ");
  45. }
  46. }
  47. //每打印完一层的*后,就换行 println 本身会换行
  48. System.out.println("");
  49. }
  50. }
  51. }

https://www.bilibili.com/video/BV1fh411y7R8?p=137&spm_id_from=pageDriverimage.png

break

image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png

continue

image.pngimage.pngimage.pngimage.pngimage.png

return

image.png
image.png
本章练习:

  1. public class Main
  2. {
  3. public static void main (String[] args)
  4. {
  5. System.out.println("this is java test");
  6. double cash = 100000; //现金
  7. int time=0; // 次数
  8. while(cash>=1000){
  9. if(cash > 50000){
  10. cash = cash * (1-0.05);
  11. time++;
  12. }
  13. if(cash <= 50000){
  14. cash = cash - 1000;
  15. time++;
  16. }
  17. if(cash<0){
  18. break;
  19. }
  20. }
  21. System.out.println(time);
  22. }
  23. }

image.png

  1. public class Homework01 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. /*
  5. 某人有100,000元,每经过一次路口,需要交费,规则如下:
  6. 1) 当现金>50000时,每次交5%
  7. 2) 当现金<=50000时,每次交1000
  8. 编程计算该人可以经过多少次路口, 要求: 使用 while + break方式完成
  9. 思路分析
  10. 1. 定义 double money 保存 100000
  11. 2. 根据题的要求,我们分析出来有三种情况
  12. money > 50000
  13. money >=1000 && money <= 50000
  14. money < 1000
  15. 3. 使用多分支 if-elseif-else
  16. 4. while+break[money < 1000], 同时使用一个变量count来保存通过路口
  17. 代码实现
  18. */
  19. double money = 100000;//还有多少钱
  20. int count = 0; //累积过的路口
  21. while(true) { //无限循环
  22. if(money > 50000) { //过路口
  23. //money = money - money * 0.05;
  24. money *= 0.95; //过了这个路口后,还有这么多钱
  25. count++;
  26. } else if(money >=1000) {
  27. money -= 1000;
  28. count++;
  29. } else { //钱不够1000
  30. break;
  31. }
  32. }
  33. System.out.println("100000 可以过 " + count + " 路口..");
  34. }
  35. }

本章练习2:

  1. public class Main
  2. {
  3. public static void main (String[] args)
  4. {
  5. System.out.println("this is java test");
  6. //定义一个三位数
  7. int num = 133;
  8. //取出百位
  9. int baiwei = num/100;
  10. int shiwei = num/10%10;
  11. int gewei = num%10;
  12. // 利用if进行判断
  13. if(num==baiwei*baiwei*baiwei+shiwei*shiwei*shiwei+gewei*gewei*gewei){
  14. System.out.println("是水仙花数");
  15. }else{
  16. System.out.println("不是水仙花数");
  17. }
  18. }
  19. }

image.png

  1. public class Homework06 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. /*
  5. 输出1-100之间的不能被5整除的数,每5个一行
  6. 思路分析
  7. 1. 先输出1-100的所有数
  8. 2. 然后过滤输出 不能被5整除的数 i % 5 !=0
  9. 3. 每5个一行, 我们使用 int count 统计输出的个数 当 count%5=0就说明
  10. 输出了5个,这时,我们输出 一个换行即可控制
  11. 代码实现
  12. */
  13. int count = 0; //统计输出的个数
  14. for(int i = 1; i <= 100; i++) {
  15. if(i % 5 != 0) {
  16. count++;
  17. System.out.print(i + "\t");
  18. //判断, 每满5个,就输出一个换行..
  19. if(count % 5 == 0) {
  20. System.out.println();
  21. }
  22. }
  23. }
  24. }
  25. }
  1. public static void main (String[] args)
  2. {
  3. char a = ' ';
  4. for (int i = 65; i< 65+26; i++){
  5. a = (char)i;
  6. System.out.println(a);
  7. }
  8. for (int i = 97; i< 97+26; i++){
  9. a = (char)i;
  10. System.out.println(a);
  11. }
  12. }
  13. public class Homework07 {
  14. //编写一个main方法
  15. public static void main(String[] args) {
  16. //输出小写的a-z以及大写的Z-A
  17. //考察我们对 a-z编码和 for的综合使用
  18. //思路分析
  19. //1. 'b' = 'a' + 1 c = 'a' + 2
  20. //2. 使用for搞定
  21. for(char c1 = 'a'; c1 <= 'z'; c1++) {
  22. System.out.print(c1 +" ");
  23. }
  24. System.out.println("============");
  25. //灵活的使用,编程..
  26. for(char c1 = 'Z'; c1 >= 'A'; c1--) {
  27. System.out.print(c1 +" ");
  28. }
  29. }
  30. }

image.pngimage.png

  1. public class Main
  2. {
  3. public static void main (String[] args)
  4. {
  5. double sum = 0;
  6. for(double i = 1; i <= 100; i++){
  7. if (i%2!=0){
  8. sum = sum + 1/i;
  9. }else{
  10. sum = sum - 1/i;
  11. }
  12. }
  13. System.out.println(sum);
  14. }
  15. }
  16. public class Homework08 {
  17. //编写一个main方法
  18. public static void main(String[] args) {
  19. /*
  20. 求出1-1/2+1/3-1/4…..1/100的和
  21. 思路分析
  22. 1. 1-1/2+1/3-1/4…..1/100 = (1/1)-(1/2)+(1/3)-(1/4)...1/100
  23. 2. 从上面的分析我们可以看到
  24. (1) 一共有100数 , 分子为1 , 分母从1-100
  25. (2) 还发现 当分母为奇数时,前面是 +, 当分母是偶数时,前面是-
  26. 3. 我们可以使用 for + 判断即可完成
  27. 4. 把结果存放到 double sum
  28. 5. 这里有一个隐藏的陷阱,要把 公式分子 1 写出1.0 才能得到精确的小数
  29. */
  30. double sum = 0;
  31. for(int i = 1; i <= 100; i++) {
  32. //判断是奇数还是偶数,然后做不同的处理
  33. if( i % 2 != 0) {//分母为奇数
  34. sum += 1.0/i;
  35. } else { //分母我偶数
  36. sum -= 1.0/i;
  37. }
  38. }
  39. System.out.println("sum=" + sum);
  40. }
  41. }

image.pngimage.png

  1. public class Main
  2. {
  3. public static void main (String[] args)
  4. {
  5. int sum = 0;
  6. int total = 0;
  7. for (int i = 1; i <= 100 ; i++){
  8. for(int j = 1; j <= i; j++){
  9. sum = sum + j;
  10. }
  11. }
  12. System.out.println(sum);
  13. }
  14. }

image.png

6章 2022年1月20日-2022年1月21日

数组

image.pngimage.pngimage.pngimage.png
image.pngimage.pngimage.pngimage.pngimage.png
案例1:

  1. import java.util.Scanner;
  2. public class Main
  3. {
  4. public static void main (String[] args)
  5. {
  6. char[] array = new char[26];
  7. for (int i = 0; i < array.length ; i++ ){
  8. array[i] = (char)(i+'A');
  9. System.out.println(array);
  10. }
  11. }
  12. }
  13. public class ArrayExercise01 {
  14. //编写一个main方法
  15. public static void main(String[] args) {
  16. /*
  17. 创建一个char类型的26个元素的数组,分别 放置'A'-'Z'。
  18. 使用for循环访问所有元素并打印出来。
  19. 提示:char类型数据运算 'A'+1 -> 'B'
  20. 思路分析
  21. 1. 定义一个 数组 char[] chars = new char[26]
  22. 2. 因为 'A' + 1 = 'B' 类推,所以老师使用for来赋值
  23. 3. 使用for循环访问所有元素
  24. */
  25. char[] chars = new char[26];
  26. for( int i = 0; i < chars.length; i++) {//循环26次
  27. //chars 是 char[]
  28. //chars[i] 是 char
  29. chars[i] = (char)('A' + i); //'A' + i 是int , 需要强制转换
  30. }
  31. //循环输出
  32. System.out.println("===chars数组===");
  33. for( int i = 0; i < chars.length; i++) {//循环26次
  34. System.out.print(chars[i] + " ");
  35. }
  36. }
  37. }

image.png
案例2:

  1. public class Main
  2. {
  3. public static void main (String[] args)
  4. {
  5. int[] arr = {4,-1,9,10,23};
  6. int max = arr[0];
  7. int maxIndex = 0;
  8. for(int i = 1; i < arr.length; i++) {//从下标 1 开始遍历arr
  9. if(max < arr[i]){
  10. max = arr[i];
  11. maxIndex = i;
  12. }
  13. }
  14. System.out.println("max=" + max + " maxIndex=" + maxIndex);
  15. }
  16. }
  17. public class ArrayExercise02 {
  18. //编写一个main方法
  19. public static void main(String[] args) {
  20. //请求出一个数组int[]的最大值 {4,-1,9, 10,23},并得到对应的下标
  21. //老韩思路分析
  22. //1. 定义一个int数组 int[] arr = {4,-1,9, 10,23};
  23. //2. 假定 max = arr[0] 是最大值 , maxIndex=0;
  24. //3. 从下标 1 开始遍历arr, 如果max < 当前元素,说明max 不是真正的
  25. // 最大值, 我们就 max=当前元素; maxIndex=当前元素下标
  26. //4. 当我们遍历这个数组arr后 , max就是真正的最大值,maxIndex最大值
  27. // 对应的下标
  28. int[] arr = {4,-1,9,10,23};
  29. int max = arr[0];//假定第一个元素就是最大值
  30. int maxIndex = 0; //
  31. for(int i = 1; i < arr.length; i++) {//从下标 1 开始遍历arr
  32. if(max < arr[i]) {//如果max < 当前元素
  33. max = arr[i]; //把max 设置成 当前元素
  34. maxIndex = i;
  35. }
  36. }
  37. //当我们遍历这个数组arr后 , max就是真正的最大值,maxIndex最大值下标
  38. System.out.println("max=" + max + " maxIndex=" + maxIndex);
  39. }
  40. }

image.pngimage.png

数组赋值机制

image.png

  1. public class ArrayAssign {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. //基本数据类型赋值, 赋值方式为值拷贝
  5. //n2的变化,不会影响到n1的值
  6. int n1 = 10;
  7. int n2 = n1;
  8. n2 = 80;
  9. System.out.println("n1=" + n1);//10
  10. System.out.println("n2=" + n2);//80
  11. //数组在默认情况下是引用传递,赋的值是地址,赋值方式为引用赋值
  12. //是一个地址 , arr2变化会影响到 arr1
  13. int[] arr1 = {1, 2, 3};
  14. int[] arr2 = arr1;//把 arr1赋给 arr2
  15. arr2[0] = 10;
  16. //看看arr1的值
  17. System.out.println("====arr1的元素====");
  18. for(int i = 0; i < arr1.length; i++) {
  19. System.out.println(arr1[i]);//10, 2, 3
  20. }
  21. System.out.println("====arr2的元素====");
  22. for(int i = 0; i < arr2.length; i++) {
  23. System.out.println(arr2[i]);//10, 2, 3
  24. }
  25. }
  26. }

image.pngimage.png

数组翻转

image.pngimage.pngimage.pngimage.png

数组扩容

image.pngimage.png

  1. public class ArrayAdd {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. /*
  5. 要求:实现动态的给数组添加元素效果,实现对数组扩容。ArrayAdd.java
  6. 1.原始数组使用静态分配 int[] arr = {1,2,3}
  7. 2.增加的元素4,直接放在数组的最后 arr = {1,2,3,4}
  8. 3.用户可以通过如下方法来决定是否继续添加,添加成功,是否继续?y/n
  9. 思路分析
  10. 1. 定义初始数组 int[] arr = {1,2,3}//下标0-2
  11. 2. 定义一个新的数组 int[] arrNew = new int[arr.length+1];
  12. 3. 遍历 arr 数组,依次将arr的元素拷贝到 arrNew数组
  13. 4. 将 4 赋给 arrNew[arrNew.length - 1] = 4;把4赋给arrNew最后一个元素
  14. 5. 让 arr 指向 arrNew ; arr = arrNew; 那么 原来arr数组就被销毁
  15. */
  16. int[] arr = {1,2,3};
  17. int[] arrNew = new int[arr.length + 1];
  18. //遍历 arr 数组,依次将arr的元素拷贝到 arrNew数组
  19. for(int i = 0; i < arr.length; i++) {
  20. arrNew[i] = arr[i];
  21. }
  22. //把4赋给arrNew最后一个元素
  23. arrNew[arrNew.length - 1] = 4;
  24. //让 arr 指向 arrNew,
  25. arr = arrNew;
  26. //输出arr 看看效果
  27. System.out.println("====arr扩容后元素情况====");
  28. for(int i = 0; i < arr.length; i++) {
  29. System.out.print(arr[i] + "\t");
  30. }
  31. }
  32. }

image.png

排序

image.pngimage.pngimage.png

  1. import java.text.SimpleDateFormat;
  2. import java.util.Arrays;
  3. import java.util.Date;
  4. public class Main
  5. {
  6. public static void main (String[] args)
  7. {
  8. int[] arr = new int[80];
  9. for(int i =0; i < 80;i++) {
  10. arr[i] = (int)(Math.random() * 80); //生成一个[0, 8000000) 数
  11. }
  12. //测试冒泡排序
  13. bubbleSort(arr);
  14. System.out.println(Arrays.toString(arr));
  15. }
  16. // 将前面额冒泡排序算法,封装成一个方法
  17. public static void bubbleSort(int[] arr){
  18. int temp = 0;
  19. boolean flag = false;
  20. for(int i = 0; i < arr.length - 1; i++){
  21. for(int j = 0; j < arr.length - 1 - i;j++){
  22. if(arr[j] > arr[j+1]){
  23. flag = true;
  24. temp = arr[j];
  25. arr[j] = arr[j+1];
  26. arr[j+1] = temp;
  27. }
  28. }
  29. if(!flag){
  30. break;
  31. }else{
  32. flag = false;
  33. }
  34. }
  35. }
  36. }

查找

  1. import java.util.Scanner;
  2. public class SeqSearch {
  3. //编写一个main方法
  4. public static void main(String[] args) {
  5. /*
  6. 有一个数列:白眉鹰王、金毛狮王、紫衫龙王、青翼蝠王猜数游戏:
  7. 从键盘中任意输入一个名称,判断数列中是否包含此名称【顺序查找】
  8. 要求: 如果找到了,就提示找到,并给出下标值
  9. 思路分析
  10. 1. 定义一个字符串数组
  11. 2. 接收用户输入, 遍历数组,逐一比较,如果有,则提示信息,并退出
  12. */
  13. //定义一个字符串数组
  14. String[] names = {"白眉鹰王", "金毛狮王", "紫衫龙王", "青翼蝠王"};
  15. Scanner myScanner = new Scanner(System.in);
  16. System.out.println("请输入名字");
  17. String findName = myScanner.next();
  18. //遍历数组,逐一比较,如果有,则提示信息,并退出
  19. //这里老师给大家一个编程思想/技巧, 一个经典的方法
  20. int index = -1;
  21. for(int i = 0; i < names.length; i++) {
  22. //比较 字符串比较 equals, 如果要找到名字就是当前元素
  23. if(findName.equals(names[i])) {
  24. System.out.println("恭喜你找到 " + findName);
  25. System.out.println("下标为= " + i);
  26. //把i 保存到 index
  27. index = i;
  28. break;//退出
  29. }
  30. }
  31. if(index == -1) { //没有找到
  32. System.out.println("sorry ,没有找到 " + findName);
  33. }
  34. }
  35. }

二维数组

  1. public class TwoDimensionalArray01 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. /*
  5. 请用二维数组输出如下图形
  6. 0 0 0 0 0 0
  7. 0 0 1 0 0 0
  8. 0 2 0 3 0 0
  9. 0 0 0 0 0 0
  10. */
  11. //什么是二维数组:
  12. //老韩解读
  13. //1. 从定义形式上看 int[][]
  14. //2. 可以这样理解,原来的一维数组的每个元素是一维数组, 就构成二维数组
  15. int[][] arr = { {0, 0, 0, 0, 0, 0},
  16. {0, 0, 1, 0, 0, 0},
  17. {0,2, 0, 3, 0, 0},
  18. {0, 0, 0, 0, 0, 0} };
  19. //关于二维数组的关键概念
  20. //(1)
  21. System.out.println("二维数组的元素个数=" + arr.length);
  22. //(2) 二维数组的每个元素是一维数组, 所以如果需要得到每个一维数组的值
  23. // 还需要再次遍历
  24. //(3) 如果我们要访问第 (i+1)个一维数组的第j+1个值 arr[i][j];
  25. // 举例 访问 3, =》 他是第3个一维数组的第4个值 arr[2][3]
  26. System.out.println("第3个一维数组的第4个值=" + arr[2][3]); //3
  27. //输出二维图形
  28. for(int i = 0; i < arr.length; i++) {//遍历二维数组的每个元素
  29. //遍历二维数组的每个元素(数组)
  30. //老韩解读
  31. //1. arr[i] 表示 二维数组的第i+1个元素 比如arr[0]:二维数组的第一个元素
  32. //2. arr[i].length 得到 对应的 每个一维数组的长度
  33. for(int j = 0; j < arr[i].length; j++) {
  34. System.out.print(arr[i][j] + " "); //输出了一维数组
  35. }
  36. System.out.println();//换行
  37. }
  38. }
  39. }

image.pngimage.pngimage.pngimage.png

杨辉三角

  1. public class YangHui {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. /*
  5. 使用二维数组打印一个 10 行杨辉三角
  6. 1
  7. 1 1
  8. 1 2 1
  9. 1 3 3 1
  10. 1 4 6 4 1
  11. 1 5 10 10 5 1
  12. 规律
  13. 1.第一行有 1 个元素, 第 n 行有 n 个元素
  14. 2. 每一行的第一个元素和最后一个元素都是 1
  15. 3. 从第三行开始, 对于非第一个元素和最后一个元素的元素的值. arr[i][j]
  16. arr[i][j] = arr[i-1][j] + arr[i-1][j-1]; //必须找到这个规律
  17. */
  18. int[][] yangHui = new int[12][];
  19. for(int i = 0; i < yangHui.length; i++) {//遍历yangHui的每个元素
  20. //给每个一维数组(行) 开空间
  21. yangHui[i] = new int[i+1];
  22. //给每个一维数组(行) 赋值
  23. for(int j = 0; j < yangHui[i].length; j++){
  24. //每一行的第一个元素和最后一个元素都是1
  25. if(j == 0 || j == yangHui[i].length - 1) {
  26. yangHui[i][j] = 1;
  27. } else {//中间的元素
  28. yangHui[i][j] = yangHui[i-1][j] + yangHui[i-1][j-1];
  29. }
  30. }
  31. }
  32. //输出杨辉三角
  33. for(int i = 0; i < yangHui.length; i++) {
  34. for(int j = 0; j < yangHui[i].length; j++) {//遍历输出该行
  35. System.out.print(yangHui[i][j] + "\t");
  36. }
  37. System.out.println();//换行.
  38. }
  39. }
  40. }

image.pngimage.png

本章练习

image.png
本章作业3:

  1. public class Homework04 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. /*
  5. 已知有个升序的数组,要求插入一个元素,该数组顺序依然是升序, 比如:
  6. [10, 12, 45, 90], 添加23 后, 数组为 [10, 12,23, 45, 90]
  7. 思路 本质数组扩容 + 定位
  8. 1. 我们先确定 添加数应该插入到哪个索引
  9. 2. 然后扩容
  10. */
  11. //先定义原数组
  12. int[] arr = {10, 12, 45, 90};
  13. int insertNum = 111;
  14. int index = -1; //index就是要插入的位置
  15. //遍历 arr数组, 如果发现 insertNum<=arr[i], 说明 i 就是要插入的位置
  16. //使用 index 保留 index = i;
  17. //如果遍历完后,没有发现 insertNum<=arr[i], 说明 index = arr.length
  18. //即:添加到arr的最后
  19. for(int i = 0; i < arr.length; i++) {
  20. if(insertNum <= arr[i]) {
  21. index = i;
  22. break; //找到位置后,就退出
  23. }
  24. }
  25. //判断index 的值
  26. if(index == -1) { //说明没有还没有找到位置
  27. index = arr.length;
  28. }
  29. //扩容
  30. //先创建一个新的数组,大小 arr.length + 1
  31. int[] arrNew = new int[arr.length + 1];
  32. //下面老师准备将arr的元素拷贝到 arrNew ,并且要跳过 index位置
  33. /*
  34. 分析:
  35. int[] arr = {10, 12, 45, 90};
  36. arrNew = { }
  37. */
  38. //i 控制arrNew的下标 , j用来控制arr数组的下标
  39. for(int i = 0, j = 0; i < arrNew.length; i++) {
  40. if( i != index ) { //说明可以把 arr的元素拷贝到 arrNew
  41. arrNew[i] = arr[j];
  42. j++;
  43. } else { //i这个位置就是要插入的数
  44. arrNew[i] = insertNum;
  45. }
  46. }
  47. //让arr 指向 arrNew , 原来的数组,就成为垃圾,被销毁
  48. arr = arrNew;
  49. System.out.println("======插入后,arr数组的元素情况======");
  50. for(int i = 0; i < arr.length; i++) {
  51. System.out.print(arr[i] + "\t");
  52. }
  53. }
  54. }

本章作业4:

  1. public class Homework05 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. /*
  5. 随机生成10个整数(1_100的范围)保存到数组,
  6. 并倒序打印以及求平均值、求最大值和最大值的下标、
  7. 并查找里面是否有 8 Homework05.java
  8. */
  9. int[] arr = new int[10];
  10. //(int)(Math.random() * 100) + 1 生产 随机数 1-100
  11. for(int i = 0; i < arr.length; i++) {
  12. arr[i] = (int)(Math.random() * 100) + 1;
  13. }
  14. System.out.println("====arr的元素情况=====");
  15. for(int i = 0; i < arr.length; i++) {
  16. System.out.print(arr[i] + "\t");
  17. }
  18. System.out.println("\n====arr的元素情况(倒序)=====");
  19. for(int i = arr.length -1; i >= 0; i--) {
  20. System.out.print(arr[i] + "\t");
  21. }
  22. //平均值、求最大值和最大值的下标
  23. //我们这里将需要一起完成
  24. //
  25. double sum = arr[0];
  26. int max = arr[0];
  27. int maxIndex = 0;
  28. for(int i = 1; i < arr.length; i++ ) {
  29. sum += arr[i]; //累积和
  30. if( max < arr[i]) {//说明max不是最大值,就变化
  31. max = arr[i];
  32. maxIndex = i;
  33. }
  34. }
  35. System.out.println("\nmax=" + max + " maxIndex=" + maxIndex);
  36. System.out.println("\n平均值=" + (sum / arr.length));
  37. //查找数组中是否有8->使用顺序查找
  38. int findNum = 8;
  39. int index = -1; //如果找到,就把下标记录到 index
  40. for(int i = 0; i < arr.length; i++) {
  41. if(findNum == arr[i]) {
  42. System.out.println("找到数" + findNum + " 下标=" + i);
  43. index = i;
  44. break;
  45. }
  46. }
  47. if(index == -1) {
  48. System.out.println("没有找到数" + findNum );
  49. }
  50. }
  51. }

image.png

  1. public class Homework07 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. //冒泡排序
  5. //要求从小到大
  6. int[] arr = {20, -1, 89, 2, 890, 7};
  7. int temp = 0; //辅助交换
  8. for(int i = 0; i < arr.length -1 ; i++) {//外层循环(轮)
  9. for(int j = 0; j < arr.length - 1 - i; j++) {//每轮的比较次数
  10. //如果是从小到大,条件是 arr[j] > arr[j+1]
  11. //如果是从大到小,条件是 arr[j] < arr[j+1]
  12. if(arr[j] > arr[j+1]) {
  13. temp = arr[j];
  14. arr[j] = arr[j+1];
  15. arr[j+1] = temp;
  16. }
  17. }
  18. }
  19. //搞定
  20. System.out.println("\n==== 排序后====");
  21. for(int i = 0; i < arr.length; i++) {
  22. System.out.print(arr[i] + "\t");
  23. }
  24. }
  25. }

7章 2022年1月21日 - 2022年1月22日image.png

  1. public class Object01 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. /*
  5. 张老太养了两只猫猫:一只名字叫小白,今年3岁,白色。
  6. 还有一只叫小花,今年100岁,花色。请编写一个程序,当用户输入小猫的名字时,
  7. 就显示该猫的名字,年龄,颜色。如果用户输入的小猫名错误,
  8. 则显示 张老太没有这只猫猫。
  9. */
  10. //单独变量来解决 => 不利于数据的管理(你把一只猫的信息拆解)
  11. //第1只猫信息
  12. // String cat1Name = "小白";
  13. // int cat1Age = 3;
  14. // String cat1Color = "白色";
  15. // //第2只猫信息
  16. // String cat2Name = "小花";
  17. // int cat2Age = 100;
  18. // String cat2Color = "花色";
  19. //数组 ===>(1)数据类型体现不出来(2) 只能通过[下标]获取信息,造成变量名字和内容
  20. // 的对应关系不明确(3) 不能体现猫的行为
  21. //第1只猫信息
  22. // String[] cat1 = {"小白", "3", "白色"};
  23. // String[] cat2 = {"小花", "100", "花色"};
  24. //使用OOP面向对象解决
  25. //实例化一只猫[创建一只猫对象]
  26. //老韩解读
  27. //1. new Cat() 创建一只猫(猫对象)
  28. //2. Cat cat1 = new Cat(); 把创建的猫赋给 cat1
  29. //3. cat1 就是一个对象
  30. Cat cat1 = new Cat();
  31. cat1.name = "小白";
  32. cat1.age = 3;
  33. cat1.color = "白色";
  34. cat1.weight = 10;
  35. //创建了第二只猫,并赋给 cat2
  36. //cat2 也是一个对象(猫对象)
  37. Cat cat2 = new Cat();
  38. cat2.name = "小花";
  39. cat2.age = 100;
  40. cat2.color = "花色";
  41. cat2.weight = 20;
  42. //怎么访问对象的属性呢
  43. System.out.println("第1只猫信息" + cat1.name
  44. + " " + cat1.age + " " + cat1.color + " " + cat1.weight);
  45. System.out.println("第2只猫信息" + cat2.name
  46. + " " + cat2.age + " " + cat2.color + " " + cat2.weight);
  47. }
  48. }
  49. //使用面向对象的方式来解决养猫问题
  50. //
  51. //定义一个猫类 Cat -> 自定义的数据类型
  52. class Cat {
  53. //属性/成员变量
  54. String name; //名字
  55. int age; //年龄
  56. String color; //颜色
  57. //double weight; //体重
  58. //行为
  59. }

image.png

快速入门

image.pngimage.png

  1. public class Object01 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. /*
  5. 张老太养了两只猫猫:一只名字叫小白,今年3岁,白色。
  6. 还有一只叫小花,今年100岁,花色。请编写一个程序,当用户输入小猫的名字时,
  7. 就显示该猫的名字,年龄,颜色。如果用户输入的小猫名错误,
  8. 则显示 张老太没有这只猫猫。
  9. */
  10. //单独变量来解决 => 不利于数据的管理(你把一只猫的信息拆解)
  11. //第1只猫信息
  12. // String cat1Name = "小白";
  13. // int cat1Age = 3;
  14. // String cat1Color = "白色";
  15. // //第2只猫信息
  16. // String cat2Name = "小花";
  17. // int cat2Age = 100;
  18. // String cat2Color = "花色";
  19. //数组 ===>(1)数据类型体现不出来(2) 只能通过[下标]获取信息,造成变量名字和内容
  20. // 的对应关系不明确(3) 不能体现猫的行为
  21. //第1只猫信息
  22. // String[] cat1 = {"小白", "3", "白色"};
  23. // String[] cat2 = {"小花", "100", "花色"};
  24. //使用OOP面向对象解决
  25. //实例化一只猫[创建一只猫对象]
  26. //老韩解读
  27. //1. new Cat() 创建一只猫(猫对象)
  28. //2. Cat cat1 = new Cat(); 把创建的猫赋给 cat1
  29. //3. cat1 就是一个对象
  30. Cat cat1 = new Cat();
  31. cat1.name = "小白";
  32. cat1.age = 3;
  33. cat1.color = "白色";
  34. cat1.weight = 10;
  35. //创建了第二只猫,并赋给 cat2
  36. //cat2 也是一个对象(猫对象)
  37. Cat cat2 = new Cat();
  38. cat2.name = "小花";
  39. cat2.age = 100;
  40. cat2.color = "花色";
  41. cat2.weight = 20;
  42. //怎么访问对象的属性呢
  43. System.out.println("第1只猫信息" + cat1.name
  44. + " " + cat1.age + " " + cat1.color + " " + cat1.weight);
  45. System.out.println("第2只猫信息" + cat2.name
  46. + " " + cat2.age + " " + cat2.color + " " + cat2.weight);
  47. }
  48. }
  49. //使用面向对象的方式来解决养猫问题
  50. //
  51. //定义一个猫类 Cat -> 自定义的数据类型
  52. class Cat {
  53. //属性/成员变量
  54. String name; //名字
  55. int age; //年龄
  56. String color; //颜色
  57. //double weight; //体重
  58. //行为
  59. }

image.pngimage.pngimage.pngimage.png image.png

  1. public class PropertiesDetail {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. //创建Person对象
  5. //p1 是对象名(对象引用)
  6. //new Person() 创建的对象空间(数据) 才是真正的对象
  7. Person p1 = new Person();
  8. //对象的属性默认值,遵守数组规则:
  9. //int 0,short 0, byte 0, long 0, float 0.0,double 0.0,char \u0000,boolean false,String null
  10. System.out.println("\n当前这个人的信息");
  11. System.out.println("age=" + p1.age + " name="
  12. + p1.name + " sal=" + p1.sal + " isPass=" + p1.isPass) ;
  13. }
  14. }
  15. class Person {
  16. //四个属性
  17. int age;
  18. String name;
  19. double sal;
  20. boolean isPass;
  21. }

image.pngimage.pngimage.pngimage.png

成员方法

image.png

  1. public class Method01 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. //方法使用
  5. //1. 方法写好后,如果不去调用(使用),不会输出
  6. //2. 先创建对象 ,然后调用方法即可
  7. Person p1 = new Person();
  8. p1.speak(); //调用方法
  9. p1.cal01(); //调用cal01方法
  10. p1.cal02(5); //调用cal02方法,同时给n = 5
  11. p1.cal02(10); //调用cal02方法,同时给n = 10
  12. //调用getSum方法,同时num1=10, num2=20
  13. //把 方法 getSum 返回的值,赋给 变量 returnRes
  14. int returnRes = p1.getSum(10, 20);
  15. System.out.println("getSum方法返回的值=" + returnRes);
  16. }
  17. }
  18. class Person {
  19. String name;
  20. int age;
  21. //方法(成员方法)
  22. //添加speak 成员方法,输出 “我是一个好人”
  23. //老韩解读
  24. //1. public 表示方法是公开
  25. //2. void : 表示方法没有返回值
  26. //3. speak() : speak是方法名, () 形参列表
  27. //4. {} 方法体,可以写我们要执行的代码
  28. //5. System.out.println("我是一个好人"); 表示我们的方法就是输出一句话
  29. public void speak() {
  30. System.out.println("我是一个好人");
  31. }
  32. //添加cal01 成员方法,可以计算从 1+..+1000的结果
  33. public void cal01() {
  34. //循环完成
  35. int res = 0;
  36. for(int i = 1; i <= 1000; i++) {
  37. res += i;
  38. }
  39. System.out.println("cal01方法 计算结果=" + res);
  40. }
  41. //添加cal02 成员方法,该方法可以接收一个数n,计算从 1+..+n 的结果
  42. //老韩解读
  43. //1. (int n) 形参列表, 表示当前有一个形参 n, 可以接收用户输入
  44. public void cal02(int n) {
  45. //循环完成
  46. int res = 0;
  47. for(int i = 1; i <= n; i++) {
  48. res += i;
  49. }
  50. System.out.println("cal02方法 计算结果=" + res);
  51. }
  52. //添加getSum成员方法,可以计算两个数的和
  53. //老韩解读
  54. //1. public 表示方法是公开的
  55. //2. int :表示方法执行后,返回一个 int 值
  56. //3. getSum 方法名
  57. //4. (int num1, int num2) 形参列表,2个形参,可以接收用户传入的两个数
  58. //5. return res; 表示把 res 的值, 返回
  59. public int getSum(int num1, int num2) {
  60. int res = num1 + num2;
  61. return res;
  62. }
  63. }

image.png

方法的妙用

  1. public class Method02 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. //请遍历一个数组 , 输出数组的各个元素值
  5. int [][] map = {{0,0,1},{1,1,1},{1,1,3}};
  6. //使用方法完成输出, 创建MyTools对象
  7. MyTools tool = new MyTools();
  8. //遍历map数组
  9. //传统的解决方式就是直接遍历
  10. // for(int i = 0; i < map.length; i++) {
  11. // for(int j = 0; j < map[i].length; j++) {
  12. // System.out.print(map[i][j] + "\t");
  13. // }
  14. // System.out.println();
  15. // }
  16. //使用方法
  17. tool.printArr(map);
  18. //....
  19. //
  20. //要求再次遍历map数组
  21. // for(int i = 0; i < map.length; i++) {
  22. // for(int j = 0; j < map[i].length; j++) {
  23. // System.out.print(map[i][j] + "\t");
  24. // }
  25. // System.out.println();
  26. // }
  27. tool.printArr(map);
  28. //...再次遍历
  29. //
  30. // for(int i = 0; i < map.length; i++) {
  31. // for(int j = 0; j < map[i].length; j++) {
  32. // System.out.print(map[i][j] + "\t");
  33. // }
  34. // System.out.println();
  35. // }
  36. tool.printArr(map);
  37. }
  38. }
  39. //把输出的功能,写到一个类的方法中,然后调用该方法即可
  40. class MyTools {
  41. //方法,接收一个二维数组
  42. public void printArr(int[][] map) {
  43. System.out.println("=======");
  44. //对传入的map数组进行遍历输出
  45. for(int i = 0; i < map.length; i++) {
  46. for(int j = 0; j < map[i].length; j++) {
  47. System.out.print(map[i][j] + "_");
  48. }
  49. System.out.println();
  50. }
  51. }
  52. }

image.pngimage.png

  1. public class MethodDetail {
  2. public static void main(String[] args) {
  3. AA a = new AA();
  4. int[] res = a.getSumAndSub(1, 4);
  5. System.out.println("和=" + res[0]);
  6. System.out.println("差=" + res[1]);
  7. //细节: 调用带参数的方法时,一定对应着参数列表传入相同类型或兼容类型 的参数
  8. byte b1 = 1;
  9. byte b2 = 2;
  10. a.getSumAndSub(b1, b2);//byte -> int
  11. //a.getSumAndSub(1.1, 1.8);//double ->int(×)
  12. //细节: 实参和形参的类型要一致或兼容、个数、顺序必须一致
  13. //a.getSumAndSub(100);//× 个数不一致
  14. a.f3("tom", 10); //ok
  15. //a.f3(100, "jack"); // 实际参数和形式参数顺序不对
  16. }
  17. }
  18. class AA {
  19. //细节: 方法不能嵌套定义
  20. public void f4() {
  21. //错误
  22. // public void f5() {
  23. // }
  24. }
  25. public void f3(String str, int n) {
  26. }
  27. //1. 一个方法最多有一个返回值 [思考,如何返回多个结果 返回数组 ]
  28. public int[] getSumAndSub(int n1, int n2) {
  29. int[] resArr = new int[2]; //
  30. resArr[0] = n1 + n2;
  31. resArr[1] = n1 - n2;
  32. return resArr;
  33. }
  34. //2. 返回类型可以为任意类型,包含基本类型或引用类型(数组,对象)
  35. // 具体看 getSumAndSub
  36. //
  37. //3. 如果方法要求有返回数据类型,则方法体中最后的执行语句必须为 return 值;
  38. // 而且要求返回值类型必须和return的值类型一致或兼容
  39. public double f1() {
  40. double d1 = 1.1 * 3;
  41. int n = 100;
  42. return n; // int ->double
  43. //return d1; //ok? double -> int
  44. }
  45. //如果方法是void,则方法体中可以没有return语句,或者 只写 return ;
  46. //老韩提示:在实际工作中,我们的方法都是为了完成某个功能,所以方法名要有一定含义
  47. //,最好是见名知意
  48. public void f2() {
  49. System.out.println("hello1");
  50. System.out.println("hello1");
  51. System.out.println("hello1");
  52. int n = 10;
  53. //return ;
  54. }
  55. }

形参列表image.pngimage.png

  1. public class MethodDetail02 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. A a = new A();
  5. //a.sayOk();
  6. a.m1();
  7. }
  8. }
  9. class A {
  10. //同一个类中的方法调用:直接调用即可
  11. //
  12. public void print(int n) {
  13. System.out.println("print()方法被调用 n=" + n);
  14. }
  15. public void sayOk() { //sayOk调用 print(直接调用即可)
  16. print(10);
  17. System.out.println("继续执行sayOK()~~~");
  18. }
  19. //跨类中的方法A类调用B类方法:需要通过对象名调用
  20. public void m1() {
  21. //创建B对象, 然后在调用方法即可
  22. System.out.println("m1() 方法被调用");
  23. B b = new B();
  24. b.hi();
  25. System.out.println("m1() 继续执行:)");
  26. }
  27. }
  28. class B {
  29. public void hi() {
  30. System.out.println("B类中的 hi()被执行");
  31. }
  32. }

小练习

  1. public class MethodExercise01 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. AA a = new AA();
  5. // if(a.isOdd(2)) {//T , 这样的写法以后会看到很多
  6. // System.out.println("是奇数");
  7. // } else {
  8. // System.out.println("是偶数");
  9. // }
  10. //
  11. //
  12. // 使用print方法
  13. a.print(4, 4, '#');
  14. }
  15. }
  16. //编写类AA ,有一个方法:判断一个数是奇数odd还是偶数, 返回boolean
  17. class AA {
  18. //思路
  19. //1. 方法的返回类型 boolean
  20. //2. 方法的名字 isOdd
  21. //3. 方法的形参 (int num)
  22. //4. 方法体 , 判断
  23. public boolean isOdd(int num) {
  24. // if(num % 2 != 0) {
  25. // return true;
  26. // } else {
  27. // return false;
  28. // }
  29. //return num % 2 != 0 ? true; false;
  30. //
  31. return num % 2 != 0;
  32. }
  33. //根据行、列、字符打印 对应行数和列数的字符,
  34. //比如:行:4,列:4,字符#,则打印相应的效果
  35. /*
  36. ####
  37. ####
  38. ####
  39. ####
  40. */
  41. //思路
  42. //1. 方法的返回类型 void
  43. //2. 方法的名字 print
  44. //3. 方法的形参 (int row, int col, char c)
  45. //4. 方法体 , 循环
  46. public void print(int row, int col, char c) {
  47. for(int i = 0; i < row; i++) {
  48. for(int j = 0; j < col; j++) {//输出每一行
  49. System.out.print(c);
  50. }
  51. System.out.println(); //换行
  52. }
  53. }
  54. }

image.pngimage.pngimage.png

  1. public class MethodParameter02 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. //测试
  5. B b = new B();
  6. // int[] arr = {1, 2, 3};
  7. // b.test100(arr);//调用方法
  8. // System.out.println(" main的 arr数组 ");
  9. // //遍历数组
  10. // for(int i = 0; i < arr.length; i++) {
  11. // System.out.print(arr[i] + "\t");
  12. // }
  13. // System.out.println();
  14. //测试
  15. Person p = new Person();
  16. p.name = "jack";
  17. p.age = 10;
  18. b.test200(p);
  19. //测试题, 如果 test200 执行的是 p = null ,下面的结果是 10
  20. //测试题, 如果 test200 执行的是 p = new Person();..., 下面输出的是10
  21. System.out.println("main 的p.age=" + p.age);//10000
  22. }
  23. }
  24. class Person {
  25. String name;
  26. int age;
  27. }
  28. class B {
  29. public void test200(Person p) {
  30. //p.age = 10000; //修改对象属性
  31. //思考
  32. p = new Person();
  33. p.name = "tom";
  34. p.age = 99;
  35. //思考
  36. //p = null;
  37. }
  38. //B类中编写一个方法test100,
  39. //可以接收一个数组,在方法中修改该数组,看看原来的数组是否变化
  40. public void test100(int[] arr) {
  41. arr[0] = 200;//修改元素
  42. //遍历数组
  43. System.out.println(" test100的 arr数组 ");
  44. for(int i = 0; i < arr.length; i++) {
  45. System.out.print(arr[i] + "\t");
  46. }
  47. System.out.println();
  48. }
  49. }

image.pngimage.png

  1. public class MethodExercise02 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. Person p = new Person();
  5. p.name = "milan";
  6. p.age = 100;
  7. //创建tools
  8. MyTools tools = new MyTools();
  9. Person p2 = tools.copyPerson(p);
  10. //到此 p 和 p2是Person对象,但是是两个独立的对象,属性相同
  11. System.out.println("p的属性 age=" + p.age + " 名字=" + p.name);
  12. System.out.println("p2的属性 age=" + p2.age + " 名字=" + p2.name);
  13. //这里老师提示: 可以同 对象比较看看是否为同一个对象
  14. System.out.println(p == p2);//false
  15. }
  16. }
  17. class Person {
  18. String name;
  19. int age;
  20. }
  21. class MyTools {
  22. //编写一个方法copyPerson,可以复制一个Person对象,返回复制的对象。克隆对象,
  23. //注意要求得到新对象和原来的对象是两个独立的对象,只是他们的属性相同
  24. //
  25. //编写方法的思路
  26. //1. 方法的返回类型 Person
  27. //2. 方法的名字 copyPerson
  28. //3. 方法的形参 (Person p)
  29. //4. 方法体, 创建一个新对象,并复制属性,返回即可
  30. public Person copyPerson(Person p) {
  31. //创建一个新的对象
  32. Person p2 = new Person();
  33. p2.name = p.name; //把原来对象的名字赋给p2.name
  34. p2.age = p.age; //把原来对象的年龄赋给p2.age
  35. return p2;
  36. }
  37. }


image.png

递归

image.pngimage.png

方法重载

image.png

  1. public class OverLoad01 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. // System.out.println(100);
  5. // System.out.println("hello,world");
  6. // System.out.println('h');
  7. // System.out.println(1.1);
  8. // System.out.println(true);
  9. //
  10. MyCalculator mc = new MyCalculator();
  11. System.out.println(mc.calculate(1, 2));
  12. System.out.println(mc.calculate(1.1, 2));
  13. System.out.println(mc.calculate(1, 2.1));
  14. }
  15. }
  16. class MyCalculator {
  17. //下面的四个 calculate方法构成了重载
  18. //两个整数的和
  19. public int calculate(int n1, int n2) {
  20. System.out.println("calculate(int n1, int n2) 被调用");
  21. return n1 + n2;
  22. }
  23. //没有构成方法重载, 仍然是错误的,因为是方法的重复定义
  24. // public void calculate(int n1, int n2) {
  25. // System.out.println("calculate(int n1, int n2) 被调用");
  26. // int res = n1 + n2;
  27. // }
  28. //看看下面是否构成重载, 没有构成,而是方法的重复定义,就错了
  29. // public int calculate(int a1, int a2) {
  30. // System.out.println("calculate(int n1, int n2) 被调用");
  31. // return a1 + a2;
  32. // }
  33. //一个整数,一个double的和
  34. public double calculate(int n1, double n2) {
  35. return n1 + n2;
  36. }
  37. //一个double ,一个Int和
  38. public double calculate(double n1, int n2) {
  39. System.out.println("calculate(double n1, int n2) 被调用..");
  40. return n1 + n2;
  41. }
  42. //三个int的和
  43. public int calculate(int n1, int n2,int n3) {
  44. return n1 + n2 + n2;
  45. }
  46. }

image.pngimage.png

练习

image.png

  1. public class OverLoadExercise {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. //在主类的main ()方法中分别用参数区别调用三个方法
  5. Methods method = new Methods();
  6. method.m(10);//100
  7. method.m(10, 20);//200
  8. method.m("韩顺平教育 hello");//字符串信息
  9. //测试
  10. System.out.println(method.max(10, 24)); // 24
  11. System.out.println(method.max(10.0, 21.4)); // 21.4
  12. System.out.println(method.max(10.0, 1.4, 30.0)); // 30.0
  13. }
  14. }
  15. /*
  16. 编写程序,类Methods中定义三个重载方法并调用。方法名为m。
  17. 三个方法分别接收一个int参数、两个int参数、一个字符串参数。分别执行平方运算并输出结果,
  18. 相乘并输出结果,输出字符串信息。在主类的main ()方法中分别用参数区别调用三个方法
  19. 定义三个重载方法max(),第一个方法,返回两个int值中的最大值,
  20. 第二个方法,返回两个double值中的最大值,第三个方法,
  21. 返回三个double值中的最大值,并分别调用三个方法
  22. */
  23. class Methods {
  24. //分析
  25. //1 方法名 max
  26. //2 形参 (int,int)
  27. //3.int
  28. public int max(int n1, int n2) {
  29. return n1 > n2 ? n1 : n2;
  30. }
  31. //分析
  32. //1 方法名 max
  33. //2 形参 (double,double)
  34. //3.double
  35. public double max(double n1, double n2) {
  36. return n1 > n2 ? n1 : n2;
  37. }
  38. //分析
  39. //1 方法名 max
  40. //2 形参 (double,double,double)
  41. //3.double
  42. public double max(double n1, double n2, double n3) {
  43. System.out.println("max(double n1, double n2, double n3)");
  44. //求出n1 和 n2的最大值
  45. double max1 = n1 > n2 ? n1 : n2;
  46. return max1 > n3 ? max1 : n3;
  47. }
  48. public double max(double n1, double n2, int n3) {
  49. System.out.println("max(double n1, double n2, int n3)");
  50. //求出n1 和 n2的最大值
  51. double max1 = n1 > n2 ? n1 : n2;
  52. return max1 > n3 ? max1 : n3;
  53. }
  54. //分析
  55. //1 方法名 m
  56. //2 形参 (int)
  57. //3.void
  58. public void m(int n) {
  59. System.out.println("平方=" + (n * n));
  60. }
  61. //1 方法名 m
  62. //2 形参 (int, int)
  63. //3.void
  64. public void m(int n1, int n2) {
  65. System.out.println("相乘=" + (n1 * n2));
  66. }
  67. //1 方法名 m
  68. //2 形参 (String)
  69. //3.void
  70. public void m(String str) {
  71. System.out.println("传入的str=" + str);
  72. }
  73. }

可变参数

image.png

  1. public class VarParameter01 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. HspMethod m = new HspMethod();
  5. System.out.println(m.sum(1, 5, 100)); //106
  6. System.out.println(m.sum(1,19)); //20
  7. }
  8. }
  9. class HspMethod {
  10. //可以计算 2个数的和,3个数的和 , 4. 5, 。。
  11. //可以使用方法重载
  12. // public int sum(int n1, int n2) {//2个数的和
  13. // return n1 + n2;
  14. // }
  15. // public int sum(int n1, int n2, int n3) {//3个数的和
  16. // return n1 + n2 + n3;
  17. // }
  18. // public int sum(int n1, int n2, int n3, int n4) {//4个数的和
  19. // return n1 + n2 + n3 + n4;
  20. // }
  21. //.....
  22. //上面的三个方法名称相同,功能相同, 参数个数不同-> 使用可变参数优化
  23. //老韩解读
  24. //1. int... 表示接受的是可变参数,类型是int ,即可以接收多个int(0-多)
  25. //2. 使用可变参数时,可以当做数组来使用 即 nums 可以当做数组
  26. //3. 遍历 nums 求和即可
  27. public int sum(int... nums) {
  28. //System.out.println("接收的参数个数=" + nums.length);
  29. int res = 0;
  30. for(int i = 0; i < nums.length; i++) {
  31. res += nums[i];
  32. }
  33. return res;
  34. }
  35. }

image.png

  1. public class VarParameterDetail {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. //细节: 可变参数的实参可以为数组
  5. int[] arr = {1, 2, 3};
  6. T t1 = new T();
  7. t1.f1(arr);
  8. }
  9. }
  10. class T {
  11. public void f1(int... nums) {
  12. System.out.println("长度=" + nums.length);
  13. }
  14. //细节: 可变参数可以和普通类型的参数一起放在形参列表,但必须保证可变参数在最后
  15. public void f2(String str, double... nums) {
  16. }
  17. //细节: 一个形参列表中只能出现一个可变参数
  18. //下面的写法是错的.
  19. // public void f3(int... nums1, double... nums2) {
  20. // }
  21. }
  1. public class VarParameterExercise {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. HspMethod hm = new HspMethod();
  5. System.out.println(hm.showScore("milan" , 90.1, 80.0 ));
  6. System.out.println(hm.showScore("terry" , 90.1, 80.0,10,30.5,70 ));
  7. }
  8. }
  9. class HspMethod {
  10. /*
  11. 有三个方法,分别实现返回姓名和两门课成绩(总分),
  12. 返回姓名和三门课成绩(总分),返回姓名和五门课成绩(总分)。
  13. 封装成一个可变参数的方法
  14. */
  15. //分析1. 方法名 showScore 2. 形参(String ,double... ) 3. 返回String
  16. //听课小伙伴,老师要求必须自己动手写
  17. public String showScore(String name ,double... scores ) {
  18. double totalScore = 0;
  19. for(int i = 0; i < scores.length; i++) {
  20. totalScore += scores[i];
  21. }
  22. return name + " 有 " +scores.length + "门课的成绩总分为=" + totalScore;
  23. }
  24. }

作用域

image.png

  1. public class VarScope {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. }
  5. }
  6. class Cat {
  7. //全局变量:也就是属性,作用域为整个类体 Cat类:cry eat 等方法使用属性
  8. //属性在定义时,可以直接赋值
  9. int age = 10; //指定的值是 10
  10. //全局变量(属性)可以不赋值,直接使用,因为有默认值,
  11. double weight; //默认值是0.0
  12. public void hi() {
  13. //局部变量必须赋值后,才能使用,因为没有默认值
  14. int num = 1;
  15. String address = "北京的猫";
  16. System.out.println("num=" + num);
  17. System.out.println("address=" + address);
  18. System.out.println("weight=" + weight);//属性
  19. }
  20. public void cry() {
  21. //1. 局部变量一般是指在成员方法中定义的变量
  22. //2. n 和 name 就是局部变量
  23. //3. n 和 name的作用域在 cry方法中
  24. int n = 10;
  25. String name = "jack";
  26. System.out.println("在cry中使用属性 age=" + age);
  27. }
  28. public void eat() {
  29. System.out.println("在eat中使用属性 age=" + age);
  30. //System.out.println("在eat中使用 cry的变量 name=" + name);//错误
  31. }
  32. }

image.png

  1. public class VarScopeDetail {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. Person p1 = new Person();
  5. /*
  6. 属性生命周期较长,伴随着对象的创建而创建,伴随着对象的销毁而销毁。
  7. 局部变量,生命周期较短,伴随着它的代码块的执行而创建,
  8. 伴随着代码块的结束而销毁。即在一次方法调用过程中
  9. */
  10. //p1.say();//当执行say方法时,say方法的局部变量比如name,会创建,当say执行完毕后
  11. //name局部变量就销毁,但是属性(全局变量)仍然可以使用
  12. //
  13. T t1 = new T();
  14. t1.test(); //第1种跨类访问对象属性的方式
  15. t1.test2(p1);//第2种跨类访问对象属性的方式
  16. }
  17. }
  18. class T {
  19. //全局变量/属性:可以被本类使用,或其他类使用(通过对象调用)
  20. public void test() {
  21. Person p1 = new Person();
  22. System.out.println(p1.name);//jack
  23. }
  24. public void test2(Person p) {
  25. System.out.println(p.name);//jack
  26. }
  27. }
  28. class Person {
  29. //细节: 属性可以加修饰符(public protected private..)
  30. // 局部变量不能加修饰符
  31. public int age = 20;
  32. String name = "jack";
  33. public void say() {
  34. //细节 属性和局部变量可以重名,访问时遵循就近原则
  35. String name = "king";
  36. System.out.println("say() name=" + name);
  37. }
  38. public void hi() {
  39. String address = "北京";
  40. //String address = "上海";//错误,重复定义变量
  41. String name = "hsp";//可以
  42. }
  43. }

image.png

构造方法 构造器

image.pngimage.png

快速入门

  1. public class Constructor01 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. //当我们new 一个对象时,直接通过构造器指定名字和年龄
  5. Person p1 = new Person("smith", 80);
  6. System.out.println("p1的信息如下");
  7. System.out.println("p1对象name=" + p1.name);//smith
  8. System.out.println("p1对象age=" + p1.age);//80
  9. }
  10. }
  11. //在创建人类的对象时,就直接指定这个对象的年龄和姓名
  12. //
  13. class Person {
  14. String name;
  15. int age;
  16. //构造器
  17. //老韩解读
  18. //1. 构造器没有返回值, 也不能写void
  19. //2. 构造器的名称和类Person一样
  20. //3. (String pName, int pAge) 是构造器形参列表,规则和成员方法一样
  21. public Person(String pName, int pAge) {
  22. System.out.println("构造器被调用~~ 完成对象的属性初始化");
  23. name = pName;
  24. age = pAge;
  25. }
  26. }

image.png

  1. public class ConstructorDetail {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. Person p1 = new Person("king", 40);//第1个构造器
  5. Person p2 = new Person("tom");//第2个构造器
  6. Dog dog1 = new Dog();//使用的是默认的无参构造器
  7. }
  8. }
  9. class Dog {
  10. //如果程序员没有定义构造器,系统会自动给类生成一个默认无参构造器(也叫默认构造器)
  11. //使用javap指令 反编译看看
  12. /*
  13. 默认构造器
  14. Dog() {
  15. }
  16. */
  17. //一旦定义了自己的构造器,默认的构造器就覆盖了,就不能再使用默认的无参构造器,
  18. //除非显式的定义一下,即: Dog(){} 写 (这点很重要)
  19. //
  20. public Dog(String dName) {
  21. //...
  22. }
  23. Dog() { //显式的定义一下 无参构造器
  24. }
  25. }
  26. class Person {
  27. String name;
  28. int age;//默认0
  29. //第1个构造器
  30. public Person(String pName, int pAge) {
  31. name = pName;
  32. age = pAge;
  33. }
  34. //第2个构造器, 只指定人名,不需要指定年龄
  35. public Person(String pName) {
  36. name = pName;
  37. }
  38. }

image.pngimage.png

练习

  1. public class ConstructorExercise {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. Person p1 = new Person();//无参构造器
  5. //下面输出 name = null, age = 18
  6. System.out.println("p1的信息 name=" + p1.name + " age=" + p1.age);
  7. Person p2 = new Person("scott", 50);
  8. //下面输出 name = scott, age = 50
  9. System.out.println("p2的信息 name=" + p2.name + " age=" + p2.age);
  10. }
  11. }
  12. /**
  13. * 在前面定义的Person类中添加两个构造器:
  14. * 第一个无参构造器:利用构造器设置所有人的age属性初始值都为18
  15. * 第二个带pName和pAge两个参数的构造器:
  16. * 使得每次创建Person对象的同时初始化对象的age属性值和name属性值。
  17. * 分别使用不同的构造器,创建对象.
  18. */
  19. class Person {
  20. String name;//默认值 null
  21. int age;//默认 0
  22. //第一个无参构造器:利用构造器设置所有人的age属性初始值都为18
  23. public Person() {
  24. age = 18;//
  25. }
  26. //第二个带pName和pAge两个参数的构造器
  27. public Person(String pName, int pAge) {
  28. name = pName;
  29. age = pAge;
  30. }
  31. }

对象创建流程分析 面试题

image.pngimage.pngimage.png

this关键字

  1. public class This01 {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. Dog dog1 = new Dog("大壮", 3);
  5. System.out.println("dog1的hashcode=" + dog1.hashCode());
  6. //dog1调用了 info()方法
  7. dog1.info();
  8. System.out.println("============");
  9. Dog dog2 = new Dog("大黄", 2);
  10. System.out.println("dog2的hashcode=" + dog2.hashCode());
  11. dog2.info();
  12. }
  13. }
  14. class Dog{ //类
  15. String name;
  16. int age;
  17. // public Dog(String dName, int dAge){//构造器
  18. // name = dName;
  19. // age = dAge;
  20. // }
  21. //如果我们构造器的形参,能够直接写成属性名,就更好了
  22. //但是出现了一个问题,根据变量的作用域原则
  23. //构造器的name 是局部变量,而不是属性
  24. //构造器的age 是局部变量,而不是属性
  25. //==> 引出this关键字来解决
  26. public Dog(String name, int age){//构造器
  27. //this.name 就是当前对象的属性name
  28. this.name = name;
  29. //this.age 就是当前对象的属性age
  30. this.age = age;
  31. System.out.println("this.hashCode=" + this.hashCode());
  32. }
  33. public void info(){//成员方法,输出属性x信息
  34. System.out.println("this.hashCode=" + this.hashCode());
  35. System.out.println(name + "\t" + age + "\t");
  36. }
  37. }

image.pngimage.pngimage.pngimage.pngimage.pngimage.png

  1. public class ThisDetail {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. // T t1 = new T();
  5. // t1.f2();
  6. T t2 = new T();
  7. t2.f3();
  8. }
  9. }
  10. class T {
  11. String name = "jack";
  12. int num = 100;
  13. /*
  14. 细节: 访问构造器语法:this(参数列表);
  15. 注意只能在构造器中使用(即只能在构造器中访问另外一个构造器)
  16. 注意: 访问构造器语法:this(参数列表); 必须放置第一条语句
  17. */
  18. public T() {
  19. //这里去访问 T(String name, int age) 构造器
  20. this("jack", 100);
  21. System.out.println("T() 构造器");
  22. }
  23. public T(String name, int age) {
  24. System.out.println("T(String name, int age) 构造器");
  25. }
  26. //this关键字可以用来访问本类的属性
  27. public void f3() {
  28. String name = "smith";
  29. //传统方式
  30. System.out.println("name=" + name + " num=" + num);//smith 100
  31. //也可以使用this访问属性
  32. System.out.println("name=" + this.name + " num=" + this.num);//jack 100
  33. }
  34. //细节: 访问成员方法的语法:this.方法名(参数列表);
  35. public void f1() {
  36. System.out.println("f1() 方法..");
  37. }
  38. public void f2() {
  39. System.out.println("f2() 方法..");
  40. //调用本类的 f1
  41. //第一种方式
  42. f1();
  43. //第二种方式
  44. this.f1();
  45. }
  46. }

image.png

  1. public class TestPerson {
  2. //编写一个main方法
  3. public static void main(String[] args) {
  4. Person p1 = new Person("mary", 20);
  5. Person p2 = new Person("mary", 20);
  6. System.out.println("p1和p2比较的结果=" + p1.compareTo(p2));
  7. }
  8. }
  9. /*
  10. 定义Person类,里面有name、age属性,并提供compareTo比较方法,
  11. 用于判断是否和另一个人相等,提供测试类TestPerson用于测试,
  12. 名字和年龄完全一样,就返回true, 否则返回false
  13. */
  14. class Person {
  15. String name;
  16. int age;
  17. //构造器
  18. public Person(String name, int age) {
  19. this.name = name;
  20. this.age = age;
  21. }
  22. //compareTo比较方法
  23. public boolean compareTo(Person p) {
  24. //名字和年龄完全一样
  25. // if(this.name.equals(p.name) && this.age == p.age) {
  26. // return true;
  27. // } else {
  28. // return false;
  29. // }
  30. return this.name.equals(p.name) && this.age == p.age;
  31. }
  32. }

8章 2022年1月22日 - 9章 2022年1月24日

image.pngimage.png

idea

image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png

image.pngimage.pngimage.pngimage.png

命名规则

image.png

  1. 一个包下,包含很多的类,java 中常用的包有:
  2. 1) java.lang.* //lang 包是基本包,默认引入,不需要再引入.
  3. 2) java.util.* //util 包,系统提供的工具包, 工具类,使用 Scanner
  4. 3) java.net.* //网络包,网络开发
  5. 4) java.awt.* //是做 java

image.png

  1. package com.hspedu.pkg;
  2. import java.util.Arrays;
  3. //注意:
  4. //老韩建议:我们需要使用到哪个类,就导入哪个类即可,不建议使用 *导入
  5. //import java.util.Scanner; //表示只会引入java.util 包下的 Scanner
  6. //import java.util.*;//表示将java.util 包下的所有类都引入(导入)
  7. public class Import01 {
  8. public static void main(String[] args) {
  9. //使用系统提供 Arrays 完成 数组排序
  10. int[] arr = {-1, 20, 2, 13, 3};
  11. //比如对其进行排序
  12. //传统方法是,自己编写排序(冒泡)
  13. //系统是提供了相关的类,可以方便完成 Arrays
  14. Arrays.sort(arr);
  15. //输出排序结果
  16. for (int i = 0; i < arr.length ; i++) {
  17. System.out.print(arr[i] + "\t");
  18. }
  19. }
  20. }

image.png

  1. //package的作用是声明当前类所在的包,需要放在类(或者文件)的最上面,
  2. // 一个类中最多只有一句package
  3. package com.hspedu.pkg;
  4. //import指令 位置放在package的下面,在类定义前面,可以有多句且没有顺序要求
  5. import java.util.Scanner;
  6. import java.util.Arrays;
  7. //...
  8. //类定义
  9. public class PkgDetail {
  10. public static void main(String[] args) {
  11. Scanner scanner = new Scanner(System.in);
  12. int[] arr = {0, -1, 1};
  13. Arrays.sort(args);
  14. }
  15. }

image.png

访问修饰符

image.pngimage.png

封装

image.pngimage.pngimage.png

  1. package com.hspedu.encap;
  2. public class Encapsulation01 {
  3. public static void main(String[] args) {
  4. //如果要使用快捷键alt+r, 需要先配置主类
  5. //第一次,我们使用鼠标点击形式运算程序,后面就可以用
  6. Person person = new Person();
  7. person.setName("韩顺平");
  8. person.setAge(30);
  9. person.setSalary(30000);
  10. System.out.println(person.info());
  11. System.out.println(person.getSalary());
  12. //如果我们自己使用构造器指定属性
  13. Person smith = new Person("smith", 80, 50000);
  14. System.out.println("====smith的信息======");
  15. System.out.println(smith.info());
  16. }
  17. }
  18. /*
  19. 那么在java中如何实现这种类似的控制呢?
  20. 请大家看一个小程序(com.hspedu.encap: Encapsulation01.java),
  21. 不能随便查看人的年龄,工资等隐私,并对设置的年龄进行合理的验证。年龄合理就设置,否则给默认
  22. 年龄, 必须在 1-120, 年龄, 工资不能直接查看 , name的长度在 2-6字符 之间
  23. */
  24. class Person {
  25. public String name; //名字公开
  26. private int age; //age 私有化
  27. private double salary; //..
  28. public void say(int n,String name) {
  29. }
  30. //构造器 alt+insert
  31. public Person() {
  32. }
  33. //有三个属性的构造器
  34. public Person(String name, int age, double salary) {
  35. // this.name = name;
  36. // this.age = age;
  37. // this.salary = salary;
  38. //我们可以将set方法写在构造器中,这样仍然可以验证
  39. setName(name);
  40. setAge(age);
  41. setSalary(salary);
  42. }
  43. //自己写setXxx 和 getXxx 太慢,我们使用快捷键
  44. //然后根据要求来完善我们的代码.
  45. public String getName() {
  46. return name;
  47. }
  48. public void setName(String name) {
  49. //加入对数据的校验,相当于增加了业务逻辑
  50. if(name.length() >= 2 && name.length() <=6 ) {
  51. this.name = name;
  52. }else {
  53. System.out.println("名字的长度不对,需要(2-6)个字符,默认名字");
  54. this.name = "无名人";
  55. }
  56. }
  57. public int getAge() {
  58. return age;
  59. }
  60. public void setAge(int age) {
  61. //判断
  62. if(age >= 1 && age <= 120) {//如果是合理范围
  63. this.age = age;
  64. } else {
  65. System.out.println("你设置年龄不对,需要在 (1-120), 给默认年龄18 ");
  66. this.age = 18;//给一个默认年龄
  67. }
  68. }
  69. public double getSalary() {
  70. //可以这里增加对当前对象的权限判断
  71. return salary;
  72. }
  73. public void setSalary(double salary) {
  74. this.salary = salary;
  75. }
  76. //写一个方法,返回属性信息
  77. public String info() {
  78. return "信息为 name=" + name + " age=" + age + " 薪水=" + salary;
  79. }
  80. }

继承

image.pngimage.pngimage.png

细节

image.pngimage.pngimage.pngimage.pngimage.png

本质image.png

  1. package com.hspedu.extend_;
  2. /**
  3. * 讲解继承的本质
  4. */
  5. public class ExtendsTheory {
  6. public static void main(String[] args) {
  7. Son son = new Son();//内存的布局
  8. //?-> 这时请大家注意,要按照查找关系来返回信息
  9. //(1) 首先看子类是否有该属性
  10. //(2) 如果子类有这个属性,并且可以访问,则返回信息
  11. //(3) 如果子类没有这个属性,就看父类有没有这个属性(如果父类有该属性,并且可以访问,就返回信息..)
  12. //(4) 如果父类没有就按照(3)的规则,继续找上级父类,直到Object...
  13. System.out.println(son.name);//返回就是大头儿子
  14. //System.out.println(son.age);//返回的就是39
  15. //System.out.println(son.getAge());//返回的就是39
  16. System.out.println(son.hobby);//返回的就是旅游
  17. }
  18. }
  19. class GrandPa { //爷类
  20. String name = "大头爷爷";
  21. String hobby = "旅游";
  22. }
  23. class Father extends GrandPa {//父类
  24. String name = "大头爸爸";
  25. private int age = 39;
  26. public int getAge() {
  27. return age;
  28. }
  29. }
  30. class Son extends Father { //子类
  31. String name = "大头儿子";
  32. }

image.pngimage.png

练习

image.png

  1. //package com.hspedu.extend_.exercise;
  2. //
  3. //public class ExtendsExercise01 {
  4. // public static void main(String[] args) {
  5. // B b=new B();//a , b name, b
  6. // }
  7. //}
  8. //
  9. //class A {
  10. // A() {
  11. // System.out.println("a");
  12. // }
  13. //
  14. // A(String name) {
  15. // System.out.println("a name");
  16. // }
  17. //}
  18. //
  19. //class B extends A {
  20. // B() {
  21. // this("abc");
  22. // System.out.println("b");
  23. // }
  24. //
  25. // B(String name) {
  26. // //默认有 super();
  27. // System.out.println("b name");
  28. // }
  29. //}
  30. //

image.png

super

image.pngimage.pngimage.pngimage.pngimage.png

比较

image.png

方法重写

image.pngimage.pngimage.pngimage.pngimage.png

多态

image.pngimage.pngimage.pngimage.pngimage.pngimage.png

细节

image.pngimage.pngimage.pngimage.pngimage.png

动态绑定机制

image.pngimage.png

多态数组

image.pngimage.pngimage.png

多态参数

image.pngimage.png

object类详解

image.pngimage.pngimage.png
image.png

  1. package com.hspedu.object_;
  2. public class Equals01 {
  3. public static void main(String[] args) {
  4. A a = new A();
  5. A b = a;
  6. A c = b;
  7. System.out.println(a == c);//true
  8. System.out.println(b == c);//true
  9. B bObj = a;
  10. System.out.println(bObj == c);//true
  11. int num1 = 10;
  12. double num2 = 10.0;
  13. System.out.println(num1 == num2);//基本数据类型,判断值是否相等
  14. //equals 方法,源码怎么查看.
  15. //把光标放在equals方法,直接输入ctrl+b
  16. //如果你使用不了. 自己配置. 即可使用.
  17. /*
  18. //带大家看看Jdk的源码 String类的 equals方法
  19. //把Object的equals方法重写了,变成了比较两个字符串值是否相同
  20. public boolean equals(Object anObject) {
  21. if (this == anObject) {//如果是同一个对象
  22. return true;//返回true
  23. }
  24. if (anObject instanceof String) {//判断类型
  25. String anotherString = (String)anObject;//向下转型
  26. int n = value.length;
  27. if (n == anotherString.value.length) {//如果长度相同
  28. char v1[] = value;
  29. char v2[] = anotherString.value;
  30. int i = 0;
  31. while (n-- != 0) {//然后一个一个的比较字符
  32. if (v1[i] != v2[i])
  33. return false;
  34. i++;
  35. }
  36. return true;//如果两个字符串的所有字符都相等,则返回true
  37. }
  38. }
  39. return false;//如果比较的不是字符串,则直接返回false
  40. }
  41. */
  42. "hello".equals("abc");
  43. //看看Object类的 equals 是
  44. /*
  45. //即Object 的equals 方法默认就是比较对象地址是否相同
  46. //也就是判断两个对象是不是同一个对象.
  47. public boolean equals(Object obj) {
  48. return (this == obj);
  49. }
  50. */
  51. /*
  52. //从源码可以看到 Integer 也重写了Object的equals方法,
  53. //变成了判断两个值是否相同
  54. public boolean equals(Object obj) {
  55. if (obj instanceof Integer) {
  56. return value == ((Integer)obj).intValue();
  57. }
  58. return false;
  59. }
  60. */
  61. Integer integer1 = new Integer(1000);
  62. Integer integer2 = new Integer(1000);
  63. System.out.println(integer1 == integer2);//false
  64. System.out.println(integer1.equals(integer2));//true
  65. String str1 = new String("hspedu");
  66. String str2 = new String("hspedu");
  67. System.out.println(str1 == str2);//false
  68. System.out.println(str1.equals(str2));//true
  69. }
  70. }
  71. class B {}
  72. class A extends B {}

image.pngimage.pngimage.pngimage.png
hashcode
image.pngimage.png
tostring
image.pngimage.pngimage.pngimage.pngimage.pngimage.png

断点调试

image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png

项目 零钱通

image.pngimage.pngimage.pngimage.png

房屋出租系统

image.png
image.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.pngimage.png