01、关键字:static

1.1、static 的使用

当我们编写一个类时,其实就是在描述其对象的属性和行为,而并没有产生实质上的对象,只有通过 new 关键字才会产生出对象,这时系统才会分配内存空间给对象,其方法才可以供外部调用。

我们有时候希望无论是否产生了对象或无论产生了多少对象的情况下,某些特定的数据在内存空间里只有一份。

例如所有的中国人都有个国家名称,每一个中国人都共享这个国家名称,不必在每一个中国人的实例对象中都单独分配一个用于代表国家名称的变量。
image.png

  1. /*
  2. * static 关键字的使用
  3. *
  4. * 1.static:静态的。
  5. * 2.static 可以用来修饰:属性、方法、代码块、内部类。
  6. *
  7. * 3.使用 static 修饰属性:静态变量(或类变量)。
  8. * 3.1 属性:是否使用 static 修饰,又分为:静态属性 VS 非静态属性(实例变量)
  9. * 实例变量:我们创建了类的多个对象,每个对象都独立的拥有了一套类中的非静态属性。
  10. * 当修改其中一个非静态属性时,不会导致其他对象中同样的属性值的修饰。
  11. * 静态变量:我们创建了类的多个对象,多个对象共享同一个静态变量。当通过静态变量去修改某一个变量时,
  12. * 会导致其他对象调用此静态变量时,是修改过的。
  13. * 3.2 static 修饰属性的其他说明:
  14. * ① 静态变量随着类的加载而加载。可以通过"类.静态变量"的方式进行调用。
  15. * ② 静态变量的加载要早于对象的创建。
  16. * ③ 由于类只会加载一次,则静态变量在内存中也只会存在一次。存在方法区的静态域中。
  17. *
  18. * ④ 类变量 实例变量
  19. * 类 yes no
  20. * 对象 yes yes
  21. *
  22. * 3.3 静态属性举例:System.out.Math.PI;
  23. *
  24. */
  25. public class StaticTest {
  26. public static void main(String[] args) {
  27. Chinese.nation = "中国";
  28. Chinese c1 = new Chinese();
  29. c1.name = "姚明";
  30. c1.age = 40;
  31. c1.nation = "CHN";
  32. Chinese c2 = new Chinese();
  33. c2.name = "马龙";
  34. c2.age = 30;
  35. c2.nation = "CHINA";
  36. System.out.println(c1.nation);
  37. //编译不通过
  38. // Chinese.name = "张继科";
  39. }
  40. }
  41. //中国人
  42. class Chinese{
  43. String name;
  44. int age;
  45. static String nation;
  46. }

1.2、类变量 vs 实例变量内存解析

image.png

1.3、static 修饰方法

  1. /*
  2. * 4.使用 static 修饰方法:静态方法
  3. * ① 随着类的加载而加载,可以通过"类.静态方法"的方式调用
  4. * ② 静态方法 非静态方法
  5. * 类 yes no
  6. * 对象 yes yes
  7. * ③ 静态方法中,只能调用静态的方法或属性
  8. * 非静态的方法中,可以调用所有的方法或属性
  9. *
  10. * 5.static 注意点:
  11. * 5.1 在静态的方法内,不能使用 this 关键字、super 关键字
  12. * 5.2 关于静态属性和静态方法的使用,大家从生命周期的角度去理解。
  13. *
  14. * 6.开发中,如何确定一个属性是否需要声明 static 的?
  15. * 》 属性是可以被多个对象所共享的,不会随着对象的不同而不同的。
  16. * 》 类中的常量也常常声明为 static
  17. *
  18. * 开发中,如何确定一个方法是否要声明为 static 的?
  19. * 》 操作静态属性的方法,通常设置为 static 的
  20. * 》 工具类中的方法,习惯上声明为 static 的。比如:Math、Arrays、Collections
  21. *
  22. */
  23. public class StaticTest {
  24. public static void main(String[] args) {
  25. Chinese.nation = "中国";
  26. Chinese c1 = new Chinese();
  27. //编译不通过
  28. // Chinese.name = "张继科";
  29. c1.eat();
  30. Chinese.show();
  31. //编译不通过
  32. // chinese.eat();
  33. // Chinese.info();
  34. }
  35. }
  36. //中国人
  37. class Chinese{
  38. String name;
  39. int age;
  40. static String nation;
  41. public void eat(){
  42. System.out.println("中国人吃中餐");
  43. //调用非静态结构
  44. this.info();
  45. System.out.println("name : " + name);
  46. //调用静态结构
  47. walk();
  48. System.out.println("nation : " + Chinese.nation);
  49. }
  50. public static void show(){
  51. System.out.println("我是一个中国人!");
  52. // eat();
  53. // name = "Tom";
  54. //可以调用静态的结构
  55. System.out.println(Chinese.nation);
  56. walk();
  57. }
  58. public void info(){
  59. System.out.println("name : " + name + ",age : " + age);
  60. }
  61. public static void walk(){
  62. }
  63. }

1.4、自定义 ArrayUtil 的优化

  1. /*
  2. * 自定义数组工具类
  3. */
  4. public class ArrayUtil {
  5. // 求数组的最大值
  6. public static int getMax(int[] arr) {
  7. int maxValue = arr[0];
  8. for (int i = 1; i < arr.length; i++) {
  9. if (maxValue < arr[i]) {
  10. maxValue = arr[i];
  11. }
  12. }
  13. return maxValue;
  14. }
  15. // 求数组的最小值
  16. public static int getMin(int[] arr) {
  17. int minValue = arr[0];
  18. for (int i = 1; i < arr.length; i++) {
  19. if (minValue > arr[i]) {
  20. minValue = arr[i];
  21. }
  22. }
  23. return minValue;
  24. }
  25. // 求数组总和
  26. public static int getSum(int[] arr) {
  27. int sum = 0;
  28. for (int i = 0; i < arr.length; i++) {
  29. sum += arr[i];
  30. }
  31. return sum;
  32. }
  33. // 求数组平均值
  34. public static int getAvg(int[] arr) {
  35. int avgValue = getSum(arr) / arr.length;
  36. return avgValue;
  37. }
  38. //如下两个同名方法构成重载
  39. // 反转数组
  40. public static void reverse(int[] arr) {
  41. for (int i = 0; i < arr.length / 2; i++) {
  42. int temp = arr[i];
  43. arr[i] = arr[arr.length - i - 1];
  44. arr[arr.length - i - 1] = temp;
  45. }
  46. }
  47. public void reverse(String[] arr){
  48. }
  49. // 复制数组
  50. public static int[] copy(int[] arr) {
  51. int[] arr1 = new int[arr.length];
  52. for (int i = 0; i < arr1.length; i++) {
  53. arr1[i] = arr[i];
  54. }
  55. return null;
  56. }
  57. // 数组排序
  58. public static void sort(int[] arr) {
  59. for (int i = 0; i < arr.length - 1; i++) {
  60. for (int j = 0; j < arr.length - 1 - i; j++) {
  61. if (arr[j] > arr[j + 1]) {
  62. // int temp = arr[j];
  63. // arr[j] = arr[j + 1];
  64. // arr[j + 1] = temp;
  65. //错误的:
  66. // swap(arr[j],arr[j+1]);
  67. swap(arr,j ,j+1);
  68. }
  69. }
  70. }
  71. }
  72. //错误的:交换数组中两个指定位置元素的值
  73. // public void swap(int i,int j){
  74. // int temp = i;
  75. // i = j;
  76. // j = temp;
  77. // }
  78. //正确的:
  79. private static void swap(int[] arr,int i,int j){
  80. int temp = arr[i];
  81. arr[i] = arr[j];
  82. arr[j] = temp;
  83. }
  84. // 遍历数组
  85. public static void print(int[] arr) {
  86. System.out.print("[");
  87. for (int i = 0; i < arr.length; i++) {
  88. System.out.print(arr[i] + ",");
  89. }
  90. System.out.println("]");
  91. }
  92. // 查找指定元素
  93. public static int getIndex(int[] arr, int dest) {
  94. //线性查找
  95. for (int i = 0; i < arr.length; i++) {
  96. if (dest==arr[i]) {
  97. return i;
  98. }
  99. }
  100. return -1;
  101. }
  102. }

测试类

  1. public class ArrayUtilTest {
  2. public static void main(String[] args) {
  3. // ArrayUtil util = new ArrayUtil();
  4. int[] arr = new int[]{32,5,26,74,0,96,14,-98,25};
  5. int max = ArrayUtil.getMax(arr);
  6. System.out.println("最大值为:" + max);
  7. System.out.print("排序前:");
  8. ArrayUtil.print(arr);
  9. ArrayUtil.sort(arr);
  10. System.out.print("排序后:");
  11. ArrayUtil.print(arr);
  12. // System.out.println("查找:");
  13. // int index = util.getIndex(arr, 5);
  14. // if(index > 0){
  15. // System.out.println("找到了,索引地址:" + index);
  16. // }else{
  17. // System.out.println("没找到");
  18. // }
  19. }
  20. }

1.5、static 的应用举例

  1. //static 关键字的应用
  2. public class CircleTest {
  3. public static void main(String[] args) {
  4. Circle c1 = new Circle();
  5. Circle c2 = new Circle();
  6. Circle c3 = new Circle();
  7. System.out.println("c1 的 ID:" + c1.getId());
  8. System.out.println("c2 的 ID:" + c2.getId());
  9. System.out.println("c3 的 ID:" + c3.getId());
  10. System.out.println("创建圆的个数: " + Circle.getTotal());
  11. }
  12. }
  13. class Circle{
  14. private double radius;
  15. private int id; //需要自动赋值
  16. public Circle(){
  17. id = init++;
  18. total++;
  19. }
  20. public Circle(double radius){
  21. this();
  22. //或
  23. // id = init++;
  24. // total++;
  25. this.radius = radius;
  26. }
  27. private static int total;//记录创建圆的个数
  28. private static int init = 1001;//static 声明的属性被所有对象所共享
  29. public double findArea(){
  30. return 3.14 * radius * radius;
  31. }
  32. public double getRadius() {
  33. return radius;
  34. }
  35. public void setRadius(double radius) {
  36. this.radius = radius;
  37. }
  38. public int getId() {
  39. return id;
  40. }
  41. public static int getTotal() {
  42. return total;
  43. }
  44. }

1.6、static 的练习

  1. /*
  2. * 编写一个类实现银行账户的概念,包含的属性有“帐号”、“密码”、“存款余额”、
  3. * “利率”、“最小余额”,定义封装这些属性的方法。
  4. * 账号要自动生成。编写主类,使用银行账户类,输入、输出 3 个储户的上述信息。
  5. * 考虑:哪些属性可以设计成 static 属性。
  6. *
  7. */
  8. public class Account {
  9. private int id; //账号
  10. private String pwd = "000000"; //密码
  11. private double balance; //存款余额
  12. private static double interestRate; //利率
  13. private static double minMoney = 1.0; //最小余额
  14. private static int init = 1001; //用于自动生成 id
  15. public Account(){ //账号自动生成
  16. id = init++;
  17. }
  18. public Account(String pwd,double balance){
  19. id = init++;
  20. this.pwd = pwd;
  21. this.balance = balance;
  22. }
  23. public String getPwd() {
  24. return pwd;
  25. }
  26. public void setPwd(String pwd) {
  27. this.pwd = pwd;
  28. }
  29. public static double getInterestRate() {
  30. return interestRate;
  31. }
  32. public static void setInterestRate(double interestRate) {
  33. Account.interestRate = interestRate;
  34. }
  35. public static double getMinMoney() {
  36. return minMoney;
  37. }
  38. public static void setMinMoney(double minMoney) {
  39. Account.minMoney = minMoney;
  40. }
  41. public int getId() {
  42. return id;
  43. }
  44. public double getBalance() {
  45. return balance;
  46. }
  47. @Override
  48. public String toString() {
  49. return "Account [id=" + id + ", pwd=" + pwd + ", balance=" + balance + "]";
  50. }
  51. }

测试类

  1. public class AccountTest {
  2. public static void main(String[] args) {
  3. Account acct1 = new Account();
  4. Account acct2 = new Account("qwerty",2000);
  5. Account.setInterestRate(0.012);
  6. Account.setMinMoney(100);
  7. System.out.println(acct1);
  8. System.out.println(acct2);
  9. System.out.println(acct1.getInterestRate());
  10. System.out.println(acct1.getMinMoney());
  11. }
  12. }

1.7、单例(Singleton)设计模式

设计模式是在大量的实践中总结和理论化之后优选的代码结构、编程风格、以及解决问题的思考方式。设计模免去我们自己再思考和摸索。就像是经典的棋谱,不同的棋局,我们用不同的棋谱。”套路”

所谓类的单例设计模式,就是采取一定的方法保证在整个的软件系统中,对某个类只能存在一个对象实例。并且该类只提供一个取得其对象实例的方法。如果我们要让类在一个虚拟机中只能产生一个对象,我们首先必须将类的构造器的访问权限设置为 private,这样,就不能用 new 操作符在类的外部产生类的对象了,但在类内部仍可以产生该类的对象。因为在类的外部开始还无法得到类的对象,只能调用该类的某个静态方法以返回类内部创建的对象,静态方法只能访问类中的静态成员变量,所以,指向类内部产生的该类对象的变量也必须定义成静态的。
[

](https://blog.csdn.net/PorkBird/article/details/113694730)
1、单例模式的饿汉式

  1. /*
  2. * 单例设计模式:
  3. * 1.所谓类的单例设计模式,就是采取一定的方法保证在整个的软件系统中,对某个类只能存在一个对象实例
  4. *
  5. * 2.如何实现?
  6. * 饿汉式 VS 懒汉式
  7. *
  8. * 3.区分饿汉式和懒汉式。
  9. * 饿汉式:坏处:对象加载时间过长。
  10. * 好处:饿汉式是线程安全的。
  11. *
  12. * 懒汉式:好处:延迟对象的创建。
  13. * 坏处:目前的写法,会线程不安全。---》到多线程内容时,再修改
  14. */
  15. public class SingletonTest {
  16. public static void main(String[] args) {
  17. // Bank bank1 = new Bank();
  18. // Bank bank2 = new Bank();
  19. Bank bank1 = Bank.getInstance();
  20. Bank bank2 = Bank.getInstance();
  21. System.out.println(bank1 == bank2);
  22. }
  23. }
  24. //单例的饿汉式
  25. class Bank{
  26. //1.私有化类的构造器
  27. private Bank(){
  28. }
  29. //2.内部创见类的对象
  30. //4.要求此对象也必须声明为静态的
  31. private static Bank instance = new Bank();
  32. //3.提供公共的静态的方法,返回类的对象。
  33. public static Bank getInstance(){
  34. return instance;
  35. }
  36. }

2、单例模式的懒汉式

  1. /*
  2. * 单例的懒汉式实现
  3. *
  4. */
  5. public class SingletonTest2 {
  6. public static void main(String[] args) {
  7. Order order1 = Order.getInstance();
  8. Order order2 = Order.getInstance();
  9. System.out.println(order1 == order2);
  10. }
  11. }
  12. class Order{
  13. //1.私有化类的构造器
  14. private Order(){
  15. }
  16. //2.声明当前类对象,没有初始化。
  17. //此对象也必须声明为 static 的
  18. private static Order instance = null;
  19. //3.声明 public、static 的返回当前类对象的方法
  20. public static Order getInstance(){
  21. if(instance == null){
  22. instance = new Order();
  23. }
  24. return instance;
  25. }
  26. }

3、单例模式的优点
由于单例模式只生成一个实例,减少了系统性能开销,当一个对象的产生需要比较多的资源时,如读取配置、产生其他依赖对象时,则可以通过在应用启动时直接产生一个单例对象,然后永久驻留内存的方式来解决。
image.png
4、单例(Singleton)设计模式-应用场景
网站的计数器,一般也是单例模式实现,否则难以同步。
应用程序的日志应用,一般都使用单例模式实现,这一般是由于共享的日志文件一直处于打开状态,因为只能有一个实例去操作,否则内容不好追加。
数据库连接池的设计一般也是采用单例模式,因为数据库连接是一种数据库资源。
项目中,读取配置文件的类,一般也只有一个对象。没有必要每次使用配置文件数据,都生成一个对象去读取。
Application也是单例的典型应用
Windows 的 Task Manager (任务管理器)就是很典型的单例模式
Windows 的 Recycle Bin(回收站)也是典型的单例应用。在整个系统运行过程中,回收站一直维护着仅有的一个实例。
[

](https://blog.csdn.net/PorkBird/article/details/113694730)

02、理解 main 方法的语法(了解)

由于 Java 虚拟机需要调用类的 main()方法,所以该方法的访问权限必须是 public,又因为 Java 虚拟机在执行 main()方法时不必创建对象,所以该方法必须是 static 的,该方法接收一个 String 类型的数组参数,该数组中保存执行 Java 命令时传递给所运行的类的参数。

又因为 main() 方法是静态的,我们不能直接访问该类中的非静态成员,必须创建该类的一个实例对象后,才能通过这个对象去访问类中的非静态成员,这种情况,我们在之前的例子中多次碰到。

  1. /*
  2. * main()方法的使用说明
  3. * 1.main()方法作为程序的入口;
  4. * 2.main()方法也是一个普通的静态方法
  5. * 3.main()方法也可以作为我们与控制台交互的方式。(之前,使用 Scanner)
  6. *
  7. *
  8. */
  9. public class MainTest {
  10. public static void main(String[] args) { //入口
  11. Main.main(new String[100]);
  12. MainTest test = new MainTest();
  13. test.show();
  14. }
  15. public void show(){
  16. }
  17. }
  18. class Main{
  19. public static void main(String[] args) {
  20. args = new String[100];
  21. for(int i = 0;i < args.length;i++){
  22. args[i] = "args_" + i;
  23. System.out.println(args[i]);
  24. }
  25. }
  26. }

命令行参数用法举例

  1. public class MainDemo {
  2. public static void main(String[] args) {
  3. for(int i = 0;i < args.length;i++){
  4. System.out.println("/*/*/*/"+ args[i]);
  5. }
  6. }
  7. }

//运行程序 MainDemo.java

  1. javac MainDemo.java
  2. java MainDemo Tom Jerry Shkstart

image.png

03、类的成员之四:代码块

  1. /*
  2. * 类的成员之四:代码块(或初始化块)
  3. *
  4. * 1.代码块的作用:用来初始化类、对象的
  5. * 2.代码块如果有修饰的话,只能使用 static
  6. * 3.分类:静态代码块 vs 非静态代码块
  7. *
  8. * 4.静态代码块
  9. * 》内部可以有输出语句
  10. * 》随着类的加载而执行,而且只执行一次
  11. * 》作用:初始化类的信息
  12. * 》如果一个类中,定义了多个静态代码块,则按照声明的先后顺序执行
  13. * 》静态代码块的执行,优先于非静态代码块的执行
  14. * 》静态代码块内只能调用静态的属性、静态的方法,不能调用非静态的结构
  15. *
  16. * 5.非静态代码块
  17. * >内部可以有输出语句
  18. * >随着对象的创建而执行
  19. * >每创建一个对象,就执行一次非静态代码块。
  20. * >作用:可以在创建对象时,对对象的属性等进行初始化。
  21. * >如果一个类中,定义了多个非静态代码块,则按照声明的先后顺序执行
  22. * >非静态代码块内可以调用静态的属性、静态的方法,或非静态的属性、非静态的方法。
  23. *
  24. * 对属性可以赋值的位置:
  25. * ①默认初始化
  26. * ②显式初始化
  27. * ③构造器中初始化
  28. * ④有了对象以后,可以通过"对象.属性"或"对象.方法"的方式,进行赋值。
  29. * ⑤在代码块中赋值
  30. */
  31. public class BlockTest {
  32. public static void main(String[] args) {
  33. String desc = Person.desc;
  34. System.out.println(desc);
  35. Person p1 = new Person();
  36. Person p2 = new Person();
  37. System.out.println(p1.age);
  38. Person.info();
  39. }
  40. }
  41. class Person{
  42. //属性
  43. String name;
  44. int age;
  45. static String desc = "我是一个青年";
  46. //构造器
  47. public Person(){
  48. }
  49. //static 的代码块
  50. static{
  51. System.out.println("hello,static block-1");
  52. //调用静态结构
  53. desc = "我是一个爱小说的人";
  54. info();
  55. //不能调用非静态结构
  56. // eat();
  57. // name = "Tom";
  58. }
  59. static{
  60. System.out.println("hello,static block-2");
  61. }
  62. //非 static 的代码块
  63. {
  64. System.out.println("hello,block-2");
  65. }
  66. {
  67. System.out.println("hello,block-1");
  68. //调用非静态结构
  69. age = 1;
  70. eat();
  71. //调用静态结构
  72. desc = "我是一个爱小说的人 1";
  73. info();
  74. }
  75. //方法
  76. public Person(String name,int age){
  77. this.name = name;
  78. this.age = age;
  79. }
  80. public void eat(){
  81. System.out.println("吃饭");
  82. }
  83. @Override
  84. public String toString() {
  85. return "Person [name=" + name + ", age=" + age + "]";
  86. }
  87. public static void info(){
  88. System.out.println("我是一个快乐的人。");
  89. }
  90. }

静态初始化块举例 1

  1. //总结:由父类到子类,静态先行
  2. class Root{
  3. static{
  4. System.out.println("Root 的静态初始化块");
  5. }
  6. {
  7. System.out.println("Root 的普通初始化块");
  8. }
  9. public Root(){
  10. System.out.println("Root 的无参数的构造器");
  11. }
  12. }
  13. class Mid extends Root{
  14. static{
  15. System.out.println("Mid 的静态初始化块");
  16. }
  17. {
  18. System.out.println("Mid 的普通初始化块");
  19. }
  20. public Mid(){
  21. System.out.println("Mid 的无参数的构造器");
  22. }
  23. public Mid(String msg){
  24. //通过 this 调用同一类中重载的构造器
  25. this();
  26. System.out.println("Mid 的带参数构造器,其参数值:"
  27. + msg);
  28. }
  29. }
  30. class Leaf extends Mid{
  31. static{
  32. System.out.println("Leaf 的静态初始化块");
  33. }
  34. {
  35. System.out.println("Leaf 的普通初始化块");
  36. }
  37. public Leaf(){
  38. //通过 super 调用父类中有一个字符串参数的构造器
  39. super("尚硅谷");
  40. System.out.println("Leaf 的构造器");
  41. }
  42. }
  43. public class LeafTest{
  44. public static void main(String[] args){
  45. new Leaf();
  46. //new Leaf();
  47. }
  48. }

静态初始化块举例 2

  1. class Father {
  2. static {
  3. System.out.println("11111111111");
  4. }
  5. {
  6. System.out.println("22222222222");
  7. }
  8. public Father() {
  9. System.out.println("33333333333");
  10. }
  11. }
  12. public class Son extends Father {
  13. static {
  14. System.out.println("44444444444");
  15. }
  16. {
  17. System.out.println("55555555555");
  18. }
  19. public Son() {
  20. System.out.println("66666666666");
  21. }
  22. public static void main(String[] args) { // 由父及子 静态先行
  23. System.out.println("77777777777");
  24. System.out.println("************************");
  25. new Son();
  26. System.out.println("************************");
  27. new Son();
  28. System.out.println("************************");
  29. new Father();
  30. }
  31. }

总结:程序中成员变量赋值的执行顺序
image.png

  1. /*
  2. * 对属性可以赋值的位置:
  3. * ①默认初始化
  4. * ②显式初始化 / ⑤在代码块中赋值
  5. * ③构造器中初始化
  6. * ④有了对象以后,可以通过"对象.属性"或"对象.方法"的方式,进行赋值。
  7. *
  8. * 执行的先后顺序:① - ② / ⑤ - ③ - ④
  9. */
  10. public class OrderTest {
  11. public static void main(String[] args) {
  12. Order order = new Order();
  13. System.out.println(order.orderId);
  14. }
  15. }
  16. class Order{
  17. int orderId = 3;
  18. {
  19. orderId = 4;
  20. }
  21. }

04、关键字:final

  1. /*
  2. * final:最终的
  3. *
  4. * 1.final可以用来修饰的结构:类、方法、变量
  5. *
  6. * 2.final用来修饰一个类:此类不能被其他类所继承。
  7. * 比如:String类、System类、StringBuffer类
  8. * 3.final修饰一个方法:final标记的方法不能被子类重写。
  9. * 比如:Object类中的getClass()。
  10. * 4.final用来修饰变量:此时的"变量"(成员变量或局部变量)就是一个常量。名称大写,且只能被赋值一次。
  11. * 4.1 final修饰属性,可以考虑赋值的位置有:显式初始化、代码块中初始化、构造器中初始化
  12. * 4.2 final修饰局部变量:
  13. * 尤其是使用final修饰形参时,表明此形参是一个常量。当我们调用此方法时,给常量形参赋一个实参。
  14. * 一旦赋值以后,就只能在方法体内使用此形参,但不能进行重新赋值。
  15. *
  16. * static final 用来修饰:全局常量
  17. */
  18. public class FinalTest {
  19. final int WIDTH = 0;
  20. final int LEFT;
  21. final int RIGHT;
  22. // final int DOWN;
  23. {
  24. LEFT = 1;
  25. }
  26. public FinalTest(){
  27. RIGHT = 2;
  28. }
  29. public FinalTest(int n){
  30. RIGHT = n;
  31. }
  32. // public void setDown(int down){
  33. // this.DOWN = down;
  34. // }
  35. public void dowidth(){
  36. // width = 20; //width cannot be resolved to a variable
  37. }
  38. public void show(){
  39. final int NUM = 10; //常量
  40. // num += 20;
  41. }
  42. public void show(final int num){
  43. System.out.println(num);
  44. }
  45. public static void main(String[] args) {
  46. int num = 10;
  47. num = num + 5;
  48. FinalTest test = new FinalTest();
  49. // test.setDown(5);
  50. test.show(10);
  51. }
  52. }
  53. final class FianlA{
  54. }
  55. //class B extends FinalA{ //错误,不能被继承。
  56. //
  57. //}
  58. //class C extends String{
  59. //
  60. //}
  61. class AA{
  62. public final void show(){
  63. }
  64. }
  65. //class BB extends AA{ // 错误,不能被重写。
  66. // public void show(){
  67. //
  68. // }
  69. //}

1、面试题1

  1. public class Something {
  2. public int addOne(final int x) {
  3. return ++x; // return x + 1;
  4. }
  5. }

2、面试题2

  1. public class Something {
  2. public static void main(String[] args) {
  3. Other o = new Other();
  4. new Something().addOne(o);
  5. }
  6. public void addOne(final Other o) {
  7. // o = new Other();
  8. o.i++;
  9. }
  10. }
  11. class Other {
  12. public int i;
  13. }

05、抽象类与抽象方法

随着继承层次中一个个新子类的定义,类变得越来越具体,而父类则更一般,更通用。类的设计应该保证父类和子类能够共享特征。有时将一个父类设计得非常抽象,以至于它没有具体的实例,这样的类叫做抽象类
image.png

  1. /*
  2. * abstract 关键字的使用
  3. *
  4. * 1.abstract:抽象的
  5. * 2.abstract 可以用来修饰的结构:类、方法
  6. * 3.abstract 修饰类:抽象类
  7. * 》 此类不能实例化
  8. * 》 抽象类中一定有构造器,便于子类实例化时调用(涉及:子类对象实例化全过程)
  9. * 》 开发中,都会提供抽象类的子类,让子类对象实例化,实现相关的操作
  10. *
  11. * 4.abstract 修饰方法:抽象方法
  12. * > 抽象方法,只有方法的声明,没有方法体。
  13. * > 包含抽象方法的类,一定是一个抽象类。反之,抽象类中可以没有抽象方法
  14. * > 若子类重写了父类中所有的抽象方法,此子类,
  15. *
  16. * abstract 使用上的注意点:
  17. * 1.abstract 不能用来修饰变量、代码块、构造器;
  18. *
  19. * 2.abstract 不能用来修饰私有方法、静态方法、final 的方法、final 的类。
  20. *
  21. */
  22. public class AbstractTest {
  23. public static void main(String[] args) {
  24. //一旦 Person 类抽象了,就不可实例化
  25. // Person p1 = new Person();
  26. // p1.eat();
  27. }
  28. }
  29. abstract class Creature{
  30. public abstract void breath();
  31. }
  32. abstract class Person extends Creature{
  33. String name;
  34. int age;
  35. public Person(){
  36. }
  37. public Person(String name,int age){
  38. this.name = name;
  39. this.age = age;
  40. }
  41. //不是抽象方法
  42. // public void eat(){
  43. // System.out.println("人吃饭");
  44. // }
  45. //抽象方法
  46. public abstract void eat();
  47. public void walk(){
  48. System.out.println("人走路");
  49. }
  50. }
  51. class Student extends Person{
  52. public Student(String name,int age){
  53. super(name,age);
  54. }
  55. public void eat(){
  56. System.out.println("学生应该多吃有营养的。");
  57. }
  58. @Override
  59. public void breath() {
  60. System.out.println("学生应该呼吸新鲜的无雾霾空气");
  61. }
  62. }

5.1、抽象类应用

抽象类是用来模型化那些父类无法确定全部实现,而是由其子类提供具体实现的对象的类。
image.png
问题:卡车(Truck)和驳船(RiverBarge)的燃料效率和行驶距离的计算方法完全不同。Vehicle 类不能提供计算方法,但子类可以。

  1. /* Java 允许类设计者指定:超类声明一个方法但不提供实现,该方法的实现由子类提 供。这样的方法称为抽象方法。有一个或更多抽象方法的类称为抽象类。
  2. * Vehicle 是一个抽象类,有两个抽象方法。
  3. * 注意:抽象类不能实例化 new Vihicle()是非法的
  4. */
  5. public abstract class Vehicle{
  6. public abstract double calcFuelEfficiency();//计算燃料效率的抽象方法
  7. public abstract double calcTripDistance();//计算行驶距离的抽象方法
  8. }
  9. public class Truck extends Vehicle{
  10. public double calcFuelEfficiency(){
  11. //写出计算卡车的燃料效率的具体方法
  12. }
  13. public double calcTripDistance(){
  14. //写出计算卡车行驶距离的具体方法
  15. }
  16. }
  17. public class RiverBarge extends Vehicle{
  18. public double calcFuelEfficiency() {
  19. //写出计算驳船的燃料效率的具体方法
  20. }
  21. public double calcTripDistance( ) {
  22. //写出计算驳船行驶距离的具体方法
  23. }
  24. }

5.2、练习

  1. /*
  2. * 编写一个 Employee 类,声明为抽象类,
  3. * 包含如下三个属性:name,id,salary。
  4. * 提供必要的构造器和抽象方法:work()。
  5. * 对于 Manager 类来说,他既是员工,还具有奖金(bonus)的属性。
  6. * 请使用继承的思想,设计 CommonEmployee 类和 Manager 类,
  7. * 要求类中提供必要的方法进行属性访问。
  8. *
  9. */
  10. public abstract class Employee {
  11. private String name;
  12. private int id;
  13. private double salary;
  14. public Employee(){
  15. super();
  16. }
  17. public Employee(String name, int id, double salary) {
  18. super();
  19. this.name = name;
  20. this.id = id;
  21. this.salary = salary;
  22. }
  23. public abstract void work();
  24. }

Manager 类

  1. /*
  2. * 对于 Manager 类来说,他既是员工,还具有奖金(bonus)的属性。
  3. *
  4. */
  5. public class Manager extends Employee{
  6. private double bonus; //奖金
  7. public Manager(double bonus) {
  8. super();
  9. this.bonus = bonus;
  10. }
  11. public Manager(String name, int id, double salary, double bonus) {
  12. super(name, id, salary);
  13. this.bonus = bonus;
  14. }
  15. @Override
  16. public void work() {
  17. System.out.println("管理员工,提高公司运行效率。");
  18. }
  19. }

CommonEmployee 类

  1. public class CommonEmployee extends Employee {
  2. @Override
  3. public void work() {
  4. System.out.println("员工在一线车间生产产品。");
  5. }
  6. }

测试类

  1. /*
  2. * 请使用继承的思想,设计 CommonEmployee 类和 Manager 类,
  3. */
  4. public class EmployeeTest {
  5. public static void main(String[] args) {
  6. Employee manager = new Manager("库克",1001,5000,50000);
  7. manager.work();
  8. CommonEmployee commonEmployee = new CommonEmployee();
  9. commonEmployee.work();
  10. }
  11. }

5.3、创建抽象类的匿名子类对象

  1. public class Num {
  2. }
  3. abstract class Creature{
  4. public abstract void breath();
  5. }
  6. abstract class Person extends Creature{
  7. String name;
  8. int age;
  9. public Person(){
  10. }
  11. public Person(String name,int age){
  12. this.name = name;
  13. this.age = age;
  14. }
  15. //不是抽象方法
  16. // public void eat(){
  17. // System.out.println("人吃饭");
  18. // }
  19. //抽象方法
  20. public abstract void eat();
  21. public void walk(){
  22. System.out.println("人走路");
  23. }
  24. }
  25. class Student extends Person{
  26. public Student(String name,int age){
  27. super(name,age);
  28. }
  29. public Student(){
  30. }
  31. public void eat(){
  32. System.out.println("学生应该多吃有营养的。");
  33. }
  34. @Override
  35. public void breath() {
  36. System.out.println("学生应该呼吸新鲜的无雾霾空气");
  37. }
  38. }

PersonTest 类

  1. /*
  2. * 抽象类的匿名子类
  3. *
  4. */
  5. public class PersonTest {
  6. public static void main(String[] args) {
  7. method(new Student()); //匿名对象
  8. Worker worker = new Worker();
  9. method1(worker); //非匿名的类非匿名的对象
  10. method1(new Worker()); //非匿名的类匿名的对象
  11. System.out.println("*********************");
  12. //创建了一个匿名子类的对象:p
  13. Person p = new Person(){
  14. @Override
  15. public void eat() {
  16. System.out.println("吃东西");
  17. }
  18. @Override
  19. public void breath() {
  20. System.out.println("呼吸空气");
  21. }
  22. };
  23. method1(p);
  24. System.out.println("**********************");
  25. //创建匿名子类的匿名对象
  26. method1(new Person(){
  27. @Override
  28. public void eat() {
  29. System.out.println("吃零食");
  30. }
  31. @Override
  32. public void breath() {
  33. System.out.println("云南的空气");
  34. }
  35. });
  36. }
  37. public static void method1(Person p){
  38. p.eat();
  39. p.walk();
  40. }
  41. public static void method(Student s){
  42. }
  43. }
  44. class Worker extends Person{
  45. @Override
  46. public void eat() {
  47. }
  48. @Override
  49. public void breath() {
  50. }
  51. }

5.4、多态的应用:模板方法设计模式(TemplateMethod)

抽象类体现的就是一种模板模式的设计,抽象类作为多个子类的通用模板,子类在抽象类的基础上进行扩展、改造,但子类总体上会保留抽象类的行为方式。
解决的问题:
当功能内部一部分实现是确定的,一部分实现是不确定的。这时可以把不确定的部分暴露出去,让子类去实现。
换句话说,在软件开发中实现一个算法时,整体步骤很固定、通用,这些步骤已经在父类中写好了。但是某些部分易变,易变部分可以抽象出来,供不同子类实现。这就是一种模板模式。
1、例 1

  1. /*
  2. * 抽象类的应用:模板方法的设计模式
  3. */
  4. public class TemplateTest {
  5. public static void main(String[] args) {
  6. SubTemlate t = new SubTemlate();
  7. t.sendTime();
  8. }
  9. }
  10. abstract class Template{
  11. //计算某段代码执行所需花费的时间
  12. public void sendTime(){
  13. long start = System.currentTimeMillis();
  14. code(); //不确定部分,易变的部分
  15. long end = System.currentTimeMillis();
  16. System.out.println("花费的时间为:" + (end - start));
  17. }
  18. public abstract void code();
  19. }
  20. class SubTemlate extends Template{
  21. @Override
  22. public void code() {
  23. for(int i = 2;i <= 1000;i++){
  24. boolean isFlag = true;
  25. for(int j = 2;j <= Math.sqrt(i);j++){
  26. if(i % j == 0){
  27. isFlag = false;
  28. break;
  29. }
  30. }
  31. if(isFlag){
  32. System.out.println(i);
  33. }
  34. }
  35. }
  36. }

2、例 2

  1. //抽象类的应用:模板方法的设计模式
  2. public class TemplateMethodTest {
  3. public static void main(String[] args) {
  4. BankTemplateMethod btm = new DrawMoney();
  5. btm.process();
  6. BankTemplateMethod btm2 = new ManageMoney();
  7. btm2.process();
  8. }
  9. }
  10. abstract class BankTemplateMethod {
  11. // 具体方法
  12. public void takeNumber() {
  13. System.out.println("取号排队");
  14. }
  15. public abstract void transact(); // 办理具体的业务 //钩子方法
  16. public void evaluate() {
  17. System.out.println("反馈评分");
  18. }
  19. // 模板方法,把基本操作组合到一起,子类一般不能重写
  20. public final void process() {
  21. this.takeNumber();
  22. this.transact();// 像个钩子,具体执行时,挂哪个子类,就执行哪个子类的实现代码
  23. this.evaluate();
  24. }
  25. }
  26. class DrawMoney extends BankTemplateMethod {
  27. public void transact() {
  28. System.out.println("我要取款!!!");
  29. }
  30. }
  31. class ManageMoney extends BankTemplateMethod {
  32. public void transact() {
  33. System.out.println("我要理财!我这里有 2000 万美元!!");
  34. }
  35. }

模板方法设计模式是编程中经常用得到的模式。各个框架、类库中都有他的影子,比如常见的有:

  • 数据库访问的封装
  • Junit 单元测试
  • JavaWeb 的 Servlet 中关于 doGet/doPost 方法调用
  • Hibernate 中模板程序
  • Spring 中 JDBCTemlate、HibernateTemplate 等

5.5、抽象类的练习

image.png
image.png
1、Employee 类

  1. /*
  2. * 定义一个 Employee 类,
  3. * 该类包含:private 成员变量 name,number,birthday,
  4. * 其中 birthday 为 MyDate 类的对象;
  5. * abstract 方法 earnings();
  6. * toString()方法输出对象的 name,number 和 birthday。
  7. *
  8. */
  9. public abstract class Employee {
  10. private String name;
  11. private int number;
  12. private MyDate birthday;
  13. public Employee(String name, int number, MyDate birthday) {
  14. super();
  15. this.name = name;
  16. this.number = number;
  17. this.birthday = birthday;
  18. }
  19. public String getName() {
  20. return name;
  21. }
  22. public void setName(String name) {
  23. this.name = name;
  24. }
  25. public int getNumber() {
  26. return number;
  27. }
  28. public void setNumber(int number) {
  29. this.number = number;
  30. }
  31. public MyDate getBirthday() {
  32. return birthday;
  33. }
  34. public void setBirthday(MyDate birthday) {
  35. this.birthday = birthday;
  36. }
  37. public abstract double earnings();
  38. @Override
  39. public String toString() {
  40. return "name=" + name + ", number=" + number + ", birthday=" + birthday.toDateString() + "]";
  41. }
  42. }

2、MyDate 类

  1. /*
  2. * MyDate 类包含:private 成员变量 year,month,day;
  3. * toDateString()方法返回日期对应的字符串:xxxx 年 xx 月 xx 日
  4. */
  5. public class MyDate {
  6. private int year;
  7. private int month;
  8. private int day;
  9. public MyDate(int year, int month, int day) {
  10. super();
  11. this.year = year;
  12. this.month = month;
  13. this.day = day;
  14. }
  15. public int getYear() {
  16. return year;
  17. }
  18. public void setYear(int year) {
  19. this.year = year;
  20. }
  21. public int getMonth() {
  22. return month;
  23. }
  24. public void setMonth(int month) {
  25. this.month = month;
  26. }
  27. public int getDay() {
  28. return day;
  29. }
  30. public void setDay(int day) {
  31. this.day = day;
  32. }
  33. public String toDateString(){
  34. return year + "年" + month + "月" + day + "日";
  35. }
  36. }

3、SalariedEmployee 类

  1. /*
  2. * 定义 SalariedEmployee 类继承 Employee 类,实现按月计算工资的员工处理。
  3. * 该类包括:private 成员变量 monthlySalary;实现父类的抽象方法 earnings(),
  4. * 该方法返回 monthlySalary 值;
  5. * toString()方法输出员工类型信息及员工的 name,number,birthday。
  6. *
  7. */
  8. public class SalariedEmployee extends Employee{
  9. private double monthlySalary; //月工资
  10. public SalariedEmployee(String name,int number,MyDate birthday) {
  11. super(name,number,birthday);
  12. }
  13. public SalariedEmployee(String name, int number, MyDate birthday, double monthlySalary) {
  14. super(name, number, birthday);
  15. this.monthlySalary = monthlySalary;
  16. }
  17. @Override
  18. public double earnings() {
  19. return monthlySalary;
  20. }
  21. @Override
  22. public String toString() {
  23. return "SalariedEmployee [" + super.toString() + "]";
  24. }
  25. }

4、HourlyEmployee 类

  1. /*
  2. * 参照 SalariedEmployee 类定义 HourlyEmployee 类,
  3. * 实现按小时计算工资的员工处理。该类包括:private 成员变量 wage 和 hour;
  4. * 实现父类的抽象方法 earnings(),该方法返回 wage*hour 值;
  5. * toString()方法输出员工类型信息及员工的 name,number,birthday。
  6. *
  7. */
  8. public class HourlyEmployee extends Employee{
  9. private int wage; //每小时的工资
  10. private int hour; //月工作的小时数
  11. public HourlyEmployee(String name, int number, MyDate birthday) {
  12. super(name, number, birthday);
  13. }
  14. public HourlyEmployee(String name, int number, MyDate birthday, int wage, int hour) {
  15. super(name, number, birthday);
  16. this.wage = wage;
  17. this.hour = hour;
  18. }
  19. @Override
  20. public double earnings() {
  21. return wage*hour;
  22. }
  23. public int getWage() {
  24. return wage;
  25. }
  26. public void setWage(int wage) {
  27. this.wage = wage;
  28. }
  29. public int getHour() {
  30. return hour;
  31. }
  32. public void setHour(int hour) {
  33. this.hour = hour;
  34. }
  35. public String toString(){
  36. return "HourlyEmployee[" + super.toString() + "]";
  37. }
  38. }

5、PayrollSystem 类

  1. import java.util.Calendar;
  2. import java.util.Scanner;
  3. /*
  4. * 定义 PayrollSystem 类,创建 Employee 变量数组并初始化,
  5. * 该数组存放各类雇员对象的引用。利用循环结构遍历数组元素,
  6. * 输出各个对象的类型,name,number,birthday,以及该对象生日。
  7. * 当键盘输入本月月份值时,
  8. * 如果本月是某个 Employee 对象的生日,还要输出增加工资信息。
  9. *
  10. */
  11. public class PayrollSystem {
  12. public static void main(String[] args) {
  13. //方式一:
  14. // Scanner scanner = new Scanner(System.in);
  15. // System.out.println("请输入当月的月份:");
  16. // int month = scanner.nextInt();
  17. //方式二:
  18. Calendar calendar = Calendar.getInstance();
  19. int month = calendar.get(Calendar.MONTH);//获取当前的月份
  20. // System.out.println(month);//一月份:0
  21. Employee[] emps = new Employee[2];
  22. emps[0] = new SalariedEmployee("马良", 1002,new MyDate(1992, 2, 28),10000);
  23. emps[1] = new HourlyEmployee("博西", 2001, new MyDate(1991, 1, 6),60,240);
  24. for(int i = 0;i < emps.length;i++){
  25. System.out.println(emps[i]);
  26. double salary = emps[i].earnings();
  27. System.out.println("月工资为:" + salary);
  28. if((month+1) == emps[i].getBirthday().getMonth()){
  29. System.out.println("生日快乐!奖励 100 元");
  30. }
  31. }
  32. }
  33. }

06、接口(interface)

6.1、概述

一方面,有时必须从几个类中派生出一个子类,继承它们所有的属性和方法。但是,Java 不支持多重继承。有了接口,就可以得到多重继承的效果。

另一方面,有时必须从几个类中抽取出一些共同的行为特征,而它们之间又没有 is-a 的关系,仅仅是具有相同的行为特征而已。例如:鼠标、键盘、打印机、扫描仪、摄像头、充电器、MP3 机、手机、数码相机、移动硬盘等都支持 USB 连接。

接口就是规范,定义的是一组规则,体现了现实世界中“如果你是/要…则必须能…”的思想。继承是一个”是不是”的关系,而接口实现则是”能不能”的关系。

接口的本质是契约,标准,规范,就像我们的法律一样。制定好后大家都要遵守。

image.png

  1. /* 接口(interface)是抽象方法和常量值定义的集合。
  2. * 接口的特点:
  3. * 用 interface 来定义。
  4. * 接口中的所有成员变量都默认是由 public static final 修饰的。
  5. * 接口中的所有抽象方法都默认是由 public abstract 修饰的。
  6. * 接口中没有构造器。
  7. * 接口采用多继承机制。
  8. */

image.png

  1. /*
  2. * 接口的使用
  3. * 1.接口使用 interface 来定义。
  4. * 2.在 Java 中:接口和类是并列的两个结构
  5. * 3.如何去定义两个接口:定义接口中的成员
  6. * 》3.1 JDK7 及以前:只能定义全局常量和抽象方法
  7. * 》全局常量:public static final 的,但是书写中,可以省略不写。
  8. * 》抽象方法:public abstract 的
  9. *
  10. * 》3.2 JDK8:除了全局常量和抽象方法之外,还可以定义静态方法、默认方法(略)。
  11. *
  12. * 4.接口中不能定义构造器!意味着接口不可以实例化。
  13. *
  14. * 5.Java 开发中,接口通过让类去实现(implements)的方式来使用。
  15. * 如果实现类覆盖了接口中的所有方法,则此实现类就可以实例化
  16. * 如果实现类没有覆盖接口中所有的抽象方法,则此实现类仍为一个抽象类
  17. *
  18. * 6.Java 类可以实现多个接口 ---》弥补了 Java 单继承性的局限性
  19. * 格式:class AA extends BB implementd CC,DD,EE
  20. *
  21. * 7.接口与接口之间是继承,而且可以多继承
  22. *
  23. **********************************
  24. * 8.接口的具体使用,体现多态性
  25. * 接口的主要用途就是被实现类实现。(面向接口编程)
  26. * 9.接口,实际可以看作是一种规范
  27. *
  28. * 面试题:抽象类与接口有哪些异同?
  29. *
  30. */
  31. public class InterfaceTest {
  32. public static void main(String[] args) {
  33. System.out.println(Flayable.MAX_SPEED);
  34. System.out.println(Flayable.MIN_SPEED);
  35. }
  36. }
  37. interface Flayable{
  38. //全局变量
  39. public static final int MAX_SPEED = 7900;
  40. int MIN_SPEED = 1;//省略了 public static final
  41. //抽象方法
  42. public abstract void fly();
  43. void stop();//省略了 public abstract
  44. //Interfaces cannot have constructors
  45. // public Flayable(){
  46. //
  47. // }
  48. }
  49. interface Attackable{
  50. void attack();
  51. }
  52. class Plane implements Flayable{
  53. @Override
  54. public void fly() {
  55. System.out.println("飞机通过引擎起飞");
  56. }
  57. @Override
  58. public void stop() {
  59. System.out.println("驾驶员减速停止");
  60. }
  61. }
  62. abstract class Kite implements Flayable{
  63. @Override
  64. public void fly() {
  65. }
  66. }
  67. class Bullet extends Object implements Flayable,Attackable,CC{
  68. @Override
  69. public void attack() {
  70. // TODO Auto-generated method stub
  71. }
  72. @Override
  73. public void fly() {
  74. // TODO Auto-generated method stub
  75. }
  76. @Override
  77. public void stop() {
  78. // TODO Auto-generated method stub
  79. }
  80. @Override
  81. public void method1() {
  82. // TODO Auto-generated method stub
  83. }
  84. @Override
  85. public void method2() {
  86. // TODO Auto-generated method stub
  87. }
  88. }
  89. //*********************************
  90. interface AA{
  91. void method1();
  92. }
  93. interface BB{
  94. void method2();
  95. }
  96. interface CC extends AA,BB{
  97. }

image.png
image.png

6.2、举例

  1. /*
  2. * 接口的使用
  3. * 1.接口使用上也满足多态性
  4. * 2.接口,实际上就是定义了一种规范
  5. * 3.开发中,体会面向接口编程!
  6. *
  7. */
  8. public class USBTest {
  9. public static void main(String[] args) {
  10. Computer com = new Computer();
  11. //1.创建了接口的非匿名实现类的非匿名对象
  12. Flash flash = new Flash();
  13. com.transferData(flash);
  14. //2. 创建了接口的非匿名实现类的匿名对象
  15. com.transferData(new Printer());
  16. //3. 创建了接口的匿名实现类的非匿名对象
  17. USB phone = new USB(){
  18. @Override
  19. public void start() {
  20. System.out.println("手机开始工作");
  21. }
  22. @Override
  23. public void stop() {
  24. System.out.println("手机结束工作");
  25. }
  26. };
  27. com.transferData(phone);
  28. //4. 创建了接口的匿名实现类的匿名对象
  29. com.transferData(new USB(){
  30. @Override
  31. public void start() {
  32. System.out.println("mp3 开始工作");
  33. }
  34. @Override
  35. public void stop() {
  36. System.out.println("mp3 结束工作");
  37. }
  38. });
  39. }
  40. }
  41. class Computer{
  42. public void transferData(USB usb){//USB usb = new Flash();
  43. usb.start();
  44. System.out.println("具体传输数据的细节");
  45. usb.stop();
  46. }
  47. }
  48. interface USB{
  49. //常量:定义了长、宽
  50. void start();
  51. void stop();
  52. }
  53. class Flash implements USB{
  54. @Override
  55. public void start() {
  56. System.out.println("U 盘开始工作");
  57. }
  58. @Override
  59. public void stop() {
  60. System.out.println("U 盘结束工作");
  61. }
  62. }
  63. class Printer implements USB{
  64. @Override
  65. public void start() {
  66. System.out.println("打印机开启工作");
  67. }
  68. @Override
  69. public void stop() {
  70. System.out.println("打印机结束工作");
  71. }
  72. }

6.3、接口的应用:代理模式(Proxy)

代理模式是 Java 开发中使用较多的一种设计模式。代理设计就是为其他对象提供一种代理以控制对这个对象的访问。
image.png

  1. /*
  2. * 接口的应用:代理模式
  3. *
  4. *
  5. */
  6. public class NetWorkTest {
  7. public static void main(String[] args) {
  8. Server server = new Server();
  9. // server.browse();
  10. ProxyServer proxyServer = new ProxyServer(server);
  11. proxyServer.browse();
  12. }
  13. }
  14. interface NetWork{
  15. public void browse();
  16. }
  17. //被代理类
  18. class Server implements NetWork{
  19. @Override
  20. public void browse() {
  21. System.out.println("真实的服务器来访问网络");
  22. }
  23. }
  24. //代理类
  25. class ProxyServer implements NetWork{
  26. private NetWork work;
  27. public ProxyServer(NetWork work){
  28. this.work = work;
  29. }
  30. public void check(){
  31. System.out.println("联网前的检查工作");
  32. }
  33. @Override
  34. public void browse() {
  35. check();
  36. work.browse();
  37. }
  38. }

应用场景:
安全代理:屏蔽对真实角色的直接访问。
远程代理:通过代理类处理远程方法调用(RMI)
延迟加载:先加载轻量级的代理对象,真正需要再加载真实对象

比如你要开发一个大文档查看软件,大文档中有大的图片,有可能一个图片有 100MB,在打开文件时,不可能将所有的图片都显示出来,这样就可以使用代理模式,当需要查看图片时,用 proxy 来进行大图片的打开。
分类

  • 静态代理(静态定义代理类)
  • 动态代理(动态生成代理类)

    • JDK 自带的动态代理,需要反射等知识 ```java public class StaticProxyTest {

      public static void main(String[] args) { Proxy s = new Proxy(new RealStar()); s.confer(); s.signContract(); s.bookTicket(); s.sing(); s.collectMoney(); } }

interface Star { void confer();// 面谈

  1. void signContract();// 签合同
  2. void bookTicket();// 订票
  3. void sing();// 唱歌
  4. void collectMoney();// 收钱

} //被代理类 class RealStar implements Star {

  1. public void confer() {
  2. }
  3. public void signContract() {
  4. }
  5. public void bookTicket() {
  6. }
  7. public void sing() {
  8. System.out.println("明星:歌唱~~~");
  9. }
  10. public void collectMoney() {
  11. }

}

//代理类 class Proxy implements Star { private Star real;

  1. public Proxy(Star real) {
  2. this.real = real;
  3. }
  4. public void confer() {
  5. System.out.println("经纪人面谈");
  6. }
  7. public void signContract() {
  8. System.out.println("经纪人签合同");
  9. }
  10. public void bookTicket() {
  11. System.out.println("经纪人订票");
  12. }
  13. public void sing() {
  14. real.sing();
  15. }
  16. public void collectMoney() {
  17. System.out.println("经纪人收钱");
  18. }

}

  1. <a name="FvxUM"></a>
  2. ## 6.4、接口的应用:工厂模式
  3. 拓展:[工厂设计模式.pdf](https://www.yuque.com/nizhegechouloudetuboshu/library/mlenxx)
  4. 接口和抽象类之间的对比
  5. | No | 区别点 | 抽象类 | 接口 |
  6. | --- | --- | --- | --- |
  7. | 1 | 定义 | 包含抽象方法的类 | 主要是抽象方法和全局常量的集合 |
  8. | 2 | 组成 | 构造方法、抽象方法、普通方法、常量、变量 | 常量、抽象方法、(jdk8.0:默认方法、静态方法) |
  9. | 3 | 使用 | 子类继承抽象类(extends) | 子类实现接口(implements) |
  10. | 4 | 关系 | 抽象类可以实现多个接口 | 接口不能继承抽象类,但允许继承多个接口 |
  11. | 5 | 常见设计模式 | 模板方法 | 简单工厂、工厂方法、代理模式 |
  12. | 6 | 对象 | 都通过对象的多态性产生实例化对象 | |
  13. | 7 | 局限 | 抽象类有单继承的局限 | 接口没有此局限 |
  14. | 8 | 实际 | 作为一个模板 | 是作为一个标准或是表示一种能力 |
  15. | 9 | 选择 | 如果抽象类和接口都可以使用的话,优先使用接口,因为避免单继承的局限
  16. | |
  17. 在开发中,常看到一个类不是去继承一个已经实现好的类,而是要么继承抽象类,要么实现接口。<br />-【面试题】排错:
  18. ```java
  19. interface A {
  20. int x = 0;
  21. }
  22. class B {
  23. int x = 1;
  24. }
  25. class C extends B implements A {
  26. public void pX() {
  27. // 编译不通过,x 不明确
  28. System.out.println(x);
  29. // System.out.println(super.x); //1
  30. // System.out.println(A.x);//0
  31. }
  32. public static void main(String[] args) {
  33. new C().pX();
  34. }
  35. }

排错 2:

  1. interface Playable {
  2. void play();
  3. }
  4. interface Bounceable {
  5. void play();
  6. }
  7. interface Rollable extends Playable, Bounceable {
  8. Ball ball= new Ball("PingPang"); //省略了 public static final
  9. }
  10. public class Ball implements Rollable {
  11. private String name;
  12. public String getName() {
  13. return name;
  14. }
  15. public Ball(String name) {
  16. this.name= name;
  17. }
  18. public void play() {
  19. ball = new Ball("Football"); //The final field Rollable.ball cannot be assigned
  20. System.out.println(ball.getName());
  21. }
  22. }

练习
image.png
CompareObject 类

  1. /*
  2. * 定义一个接口用来实现两个对象的比较。
  3. *
  4. */
  5. public interface CompareObject {
  6. public int compareTo(Object o);
  7. //若返回值是 0,代表相等;若为正数,代表当前对象大;负数代表当前对象小
  8. }

Circle 类

  1. /*
  2. * 定义一个 Circle 类,声明 redius 属性,提供 getter 和 setter 方法
  3. */
  4. public class Circle {
  5. private Double radius;
  6. public Double getRadius() {
  7. return radius;
  8. }
  9. public void setRadius(Double radius) {
  10. this.radius = radius;
  11. }
  12. public Circle() {
  13. super();
  14. }
  15. public Circle(Double radius) {
  16. super();
  17. this.radius = radius;
  18. }
  19. }

ComparableCircle 类

  1. /*
  2. * 定义一个 ComparableCircle 类,继承 Circle 类并且实现 CompareObject 接口。在 ComparableCircle 类中给出接口中方法 compareTo 的实现体,
  3. * 用来比较两个圆的半径大小。
  4. */
  5. public class ComparableCircle extends Circle implements CompareObject{
  6. public ComparableCircle(double radius) {
  7. super(radius);
  8. }
  9. @Override
  10. public int compareTo(Object o) {
  11. if(this == o){
  12. return 0;
  13. }
  14. if(o instanceof ComparableCircle){
  15. ComparableCircle c = (ComparableCircle)o;
  16. //错误的写法
  17. // return (int)(this.getRedius() - c.getRedius());
  18. //正确的方式一:
  19. // if(this.getRadius() > c.getRadius()){
  20. // return 1;
  21. // }else if(this.getRadius() < c.getRadius()){
  22. // return -1;
  23. // }else{
  24. // return 0;
  25. // }
  26. //当属性 radius 声明为 Double 类型时,可以调用包装类的方法
  27. //正确的方式二:
  28. return this.getRadius().compareTo(c.getRadius());
  29. }else{
  30. return 0;
  31. // throw new RuntimeException("传入数据类型不匹配");
  32. }
  33. }
  34. }

InterfaceTest 类

  1. /*
  2. * 定义一个测试类 InterfaceTest,创建两个 ComparableCircle 对象,
  3. * 调用 compareTo 方法比较两个类的半径大小。
  4. *
  5. */
  6. public class InterfaceTest {
  7. public static void main(String[] args) {
  8. ComparableCircle c1 = new ComparableCircle(3.4);
  9. ComparableCircle c2 = new ComparableCircle(3.6);
  10. int compareValue = c1.compareTo(c2);
  11. if(compareValue > 0){
  12. System.out.println("c1 对象大");
  13. }else if(compareValue < 0){
  14. System.out.println("c2 对象大");
  15. }else{
  16. System.out.println("两个一样的");
  17. }
  18. int compareValue1 = c1.compareTo(new String("AA"));
  19. System.out.println(compareValue1);
  20. }
  21. }

07、Java 8 中关于接口的改进

Java 8 中,你可以为接口添加静态方法和默认方法。从技术角度来说,这是完全合法的,只是它看起来违反了接口作为一个抽象定义的理念。

静态方法:
使用 static 关键字修饰。可以通过接口直接调用静态方法,并执行其方法体。我们经常在相互一起使用的类中使用静态方法。你可以在标准库中找到像 Collection/Collections 或者 Path/Paths 这样成对的接口和类。

默认方法:
默认方法使用 default 关键字修饰。可以通过实现类对象来调用。我们在已有的接口中提供新方法的同时,还保持了与旧版本代码的兼容性。比如:java 8 API 中对 Collection、List、Comparator 等接口提供了丰富的默认方法。

例1
interface 类

  1. /*
  2. * JDK8:除了全局常量和抽象方法之外,还可以定义静态方法、默认方法(略)。
  3. *
  4. *
  5. */
  6. public interface CompareA {
  7. //静态方法
  8. public static void method1() {
  9. System.out.println("CompareA:西安");
  10. }
  11. //默认方法
  12. public default void method2(){
  13. System.out.println("CompareA:深圳");
  14. }
  15. default void method3(){
  16. System.out.println("CompareA:杭州");
  17. }
  18. }

SubClassTest 类

  1. public class SubClassTest {
  2. public static void main(String[] args) {
  3. SubClass s = new SubClass();
  4. // s.method1();
  5. // SubClass.method1();
  6. // 知识点 1:接口中定义的静态方法,只能通过接口来调用。
  7. CompareA.method1();
  8. // 知识点 2:通过实现类的对象,可以调用接口中的默认方法。
  9. // 如果实现类重写了接口中的默认方法,调用时,仍然调用的是重写以后的方法
  10. s.method2();
  11. // 知识点 3:如果子类(或实现类)继承的父类和实现的接口中声明了同名同参数的默认方法,
  12. // 那么子类在没有重写此方法的情况下,默认调用的是父类中的同名同参数的方法。-->类优先原则
  13. // 知识点 4:如果实现类实现了多个接口,而这多个接口中定义了同名同参数的默认方法,
  14. // 那么在实现类没有重写此方法的情况下,报错。-->接口冲突。
  15. // 这就需要我们必须在实现类中重写此方法
  16. s.method3();
  17. }
  18. }
  19. class SubClass extends SuperClass implements CompareA,CompareB{
  20. public void method2(){
  21. System.out.println("SubClass:上海");
  22. }
  23. public void method3(){
  24. System.out.println("SubClass:深圳");
  25. }
  26. // 知识点 5:如何在子类(或实现类)的方法中调用父类、接口中被重写的方法
  27. public void myMethod(){
  28. method3(); //调用自己定义的重写的方法
  29. super.method3(); //调用的是父类中声明的
  30. // 调用接口中的默认方法
  31. CompareA.super.method3();
  32. CompareB.super.method3();
  33. }
  34. }

SuperClass 类

  1. public class SuperClass {
  2. public void method3(){
  3. System.out.println("SuperClass:北京");
  4. }
  5. }

CompareB 类

  1. public interface CompareB {
  2. default void method3(){
  3. System.out.println("CompareB:上海");
  4. }
  5. }

例2

  1. /*
  2. * 练习:接口冲突的解决方式
  3. */
  4. interface Filial {// 孝顺的
  5. default void help() {
  6. System.out.println("老妈,我来救你了");
  7. }
  8. }
  9. interface Spoony {// 痴情的
  10. default void help() {
  11. System.out.println("媳妇,别怕,我来了");
  12. }
  13. }
  14. class Father{
  15. public void help(){
  16. System.out.println("儿子,救我媳妇!");
  17. }
  18. }
  19. class Man extends Father implements Filial, Spoony {
  20. @Override
  21. public void help() {
  22. System.out.println("我该就谁呢?");
  23. Filial.super.help();
  24. Spoony.super.help();
  25. }
  26. }

08、类的内部成员之五:内部类

当一个事物的内部,还有一个部分需要一个完整的结构进行描述,而这个内部的完整的结构又只为外部事物提供服务,那么整个内部的完整结构最好使用内部类。

  1. /*
  2. * 类的内部成员之五:内部类
  3. *
  4. * 1.Java中允许将一个类A声明在另一个类B中,则类A就是内部类,类B就是外部类.
  5. *
  6. * 2.内部类的分类:成员内部类 VS 局部内部类(方法内、代码块内、构造器内)
  7. *
  8. * 3.成员内部类
  9. * 》作为外部类的成员,
  10. * - 调用外部类的结构
  11. * - 可以被static修饰
  12. * - 可以被4种不同的权限修饰
  13. *
  14. * 》作为一个类,
  15. * - 类内可以定义属性、方法、构造器等
  16. * - 可以被final修饰,表示此类不能被继承。言外之意,不使用final,就可以被继承
  17. * - 可以abstract修饰
  18. *
  19. * 4.关注如下的3个问题
  20. * 》 如何实例化成员内部类的对象
  21. * 》 如何在成员内部类中区分调用外部类的结构
  22. * 》 开发中局部内部类的使用 见《InnerClassTest1.java》
  23. */
  24. public class InnerClassTest {
  25. public static void main(String[] args) {
  26. //创建Dog实例(静态的成员内部类)
  27. Person.Dog dog = new Person.Dog();
  28. dog.show();
  29. //创建Bird实例(非静态的成员内部类)
  30. // Person.Bird bird = new Person.Bird();
  31. Person p = new Person();
  32. Person.Bird bird = p.new Bird();
  33. bird.sing();
  34. System.out.println();
  35. bird.display("喜鹊");
  36. }
  37. }
  38. class Person{
  39. String name = "李雷";
  40. int age;
  41. public void eat(){
  42. System.out.println("人,吃饭");
  43. }
  44. //静态成员内部类
  45. static class Dog{
  46. String name;
  47. int age;
  48. public void show(){
  49. System.out.println("卡拉是条狗");
  50. // eat();
  51. }
  52. }
  53. //非静态成员内部类
  54. class Bird{
  55. String name = "杜鹃";
  56. public Bird(){
  57. }
  58. public void sing(){
  59. System.out.println("我是一只猫头鹰");
  60. Person.this.eat();//调用外部类的非静态属性
  61. eat();
  62. System.out.println(age);
  63. }
  64. public void display(String name){
  65. System.out.println(name); //方法的形参
  66. System.out.println(this.name); //内部类的属性
  67. System.out.println(Person.this.name); //外部类的属性
  68. }
  69. }
  70. public void method(){
  71. //局部内部类
  72. class AA{
  73. }
  74. }
  75. {
  76. //局部内部类
  77. class BB{
  78. }
  79. }
  80. public Person(){
  81. //局部内部类
  82. class CC{
  83. }
  84. }
  85. }

InnerClassTest1类

  1. public class InnerClassTest1 {
  2. // 开发中很少见
  3. public void method(){
  4. // 局部内部类
  5. class AA{
  6. }
  7. }
  8. // 返回一个实现了Comparable接口的类的对象
  9. public Comparable getComparable(){
  10. // 创建一个实现了Comparable接口的类:局部内部类
  11. //方式一:
  12. // class MyComparable implements Comparable{
  13. //
  14. // @Override
  15. // public int compareTo(Object o) {
  16. // return 0;
  17. // }
  18. //
  19. // }
  20. //
  21. // return new MyComparable();
  22. //方式二:
  23. return new Comparable(){
  24. @Override
  25. public int compareTo(Object o) {
  26. return 0;
  27. }
  28. };
  29. }
  30. }

8.1、匿名内部类

  1. /*
  2. * 1.匿名内部类不能定义任何静态成员、方法和类,只能创建匿名内部类的一个实例。
  3. * 一个匿名内部类一定是在new的后面,用其隐含实现一个接口或实现一个类。
  4. *
  5. * 2.格式:
  6. * new 父类构造器(实参列表)|实现接口(){
  7. * //匿名内部类的类体部分
  8. * }
  9. *
  10. * 3.匿名内部类的特点
  11. * > 匿名内部类必须继承父类或实现接口
  12. * > 匿名内部类只能有一个对象
  13. * > 匿名内部类对象只能使用多态形式引用
  14. */
  15. interface Product{
  16. public double getPrice();
  17. public String getName();
  18. }
  19. public class AnonymousTest{
  20. public void test(Product p){
  21. System.out.println("购买了一个" + p.getName() + ",花掉了" + p.getPrice());
  22. }
  23. public static void main(String[] args) {
  24. AnonymousTest ta = new AnonymousTest();
  25. //调用test方法时,需要传入一个Product参数,
  26. //此处传入其匿名实现类的实例
  27. ta.test(new Product(){
  28. public double getPrice(){
  29. return 567.8;
  30. }
  31. public String getName(){
  32. return "AGP显卡";
  33. }
  34. });
  35. }
  36. }

8.2、局部内部类的使用注意

  1. public class InnerClassTest {
  2. // public void onCreate(){
  3. //
  4. // int number = 10;
  5. //
  6. // View.OnClickListern listener = new View.OnClickListener(){
  7. //
  8. // public void onClick(){
  9. // System.out.println("hello!");
  10. // System.out.println(number);
  11. // }
  12. //
  13. // }
  14. //
  15. // button.setOnClickListener(listener);
  16. //
  17. //}
  18. /*
  19. * 在局部内部类的方法中(比如:show)如果调用局部内部类所声明的方法(比如:method)中的局部变量(比如:num)的话,
  20. * 要求此局部变量声明为final的。
  21. *
  22. * jdk 7及之前版本:要求此局部变量显式的声明为final的
  23. * jdk 8及之后的版本:可以省略final的声明
  24. *
  25. */
  26. public void method(){
  27. //局部变量
  28. int num = 10;
  29. class AA{
  30. public void show(){
  31. // num = 20; //Local variable num defined in an enclosing scope must be final or effectively final
  32. System.out.println(num);
  33. }
  34. }
  35. }
  36. }