第6章【面向对象基础—中】

教学目标

  • 理解封装的概念
  • 掌握权限修饰符的使用
  • 掌握成员变量的私有化
  • 掌握构造器的声明与使用
  • 会声明标准的JavaBean
  • 能够写出类的继承格式
  • 能够说出继承的特点
  • 能够说出方法重写的概念以及和重载的区别
  • 能够使用this关键字解决问题
  • 能够使用super关键字解决问题
  • 能够分析类初始化过程(为面试服务)
  • 能够分析实例初始化过程(为面试服务)
  • 能够应用多态解决问题
  • 理解向上转型与向下转型
  • 能够使用instanceof关键字判断对象类型
  • 了解native关键字
  • 掌握final关键字
  • 了解Object类的常用方法
  • 会重写Object的常用方法

6.1 封装

6.1.1 封装概述

1、为什么需要封装?

  • 我要用洗衣机,只需要按一下开关和洗涤模式就可以了。有必要了解洗衣机内部的结构吗?有必要碰电动机吗?
  • 我们使用的电脑,内部有CPU、硬盘、键盘、鼠标等等,每一个部件通过某种连接方式一起工作,但是各个部件之间又是独立的
  • 现实生活中,每一个个体与个体之间是有边界的,每一个团体与团体之间是有边界的,而同一个个体、团体内部的信息是互通的,只是对外有所隐瞒。

面向对象编程语言是对客观世界的模拟,客观世界里每一个事物的内部信息都是隐藏在对象内部的,外界无法直接操作和修改,只能通过指定的方式进行访问和修改。封装可以被认为是一个保护屏障,防止该类的代码和数据被其他类随意访问。适当的封装可以让代码更容易理解与维护,也加强了代码的安全性。

随着我们系统越来越复杂,类会越来越多,那么类之间的访问边界必须把握好,面向对象的开发原则要遵循“高内聚、低耦合”,而“高内聚,低耦合”的体现之一:

  • 高内聚:类的内部数据操作细节自己完成,不允许外部干涉;
  • 低耦合:仅对外暴露少量的方法用于使用

隐藏对象内部的复杂性,只对外公开简单的接口。便于外界调用,从而提高系统的可扩展性、可维护性。通俗的讲,把该隐藏的隐藏起来,该暴露的暴露出来。这就是封装性的设计思想。

2、如何实现封装呢?

通俗的讲,封装就是把该隐藏的隐藏起来,该暴露的暴露出来。那么暴露的程度如何控制呢?就是依赖访问控制修饰符,也称为权限修饰符来控制。

访问控制修饰符来控制相应的可见边界,边界有如下:

(1)类

(2)包

(3)子类

(4)模块:Java9之后引入

权限修饰符

权限修饰符:public,protected,缺省,private

修饰符 本类 本包 其他包子类 其他包非子类
private × × ×
缺省 × ×
protected ×
public

外部类:public和缺省

成员变量、成员方法、构造器、成员内部类:public,protected,缺省,private

提示:protected修饰非静态成员,跨包时,只能在子类的非静态成员中访问,在静态成员中无论是否创建对象都不能访问。

示例一:本包非子类与子类
  1. package com.atguigu.test01.access1;
  2. public class Father {
  3. public int a;
  4. protected int b;
  5. int c;
  6. private int d;
  7. public static int e;
  8. protected static int f;
  9. static int g;
  10. private static int h;
  11. }
  12. class Mother{
  13. public Mother(){
  14. }
  15. }
  1. package com.atguigu.test01.access1;
  2. //本包非子类中
  3. public class Other {
  4. public static void method(){
  5. Father obj = new Father();
  6. System.out.println(obj.a);
  7. System.out.println(obj.b);
  8. System.out.println(obj.c);
  9. // System.out.println(obj.d);//跨类不可见
  10. System.out.println(Father.e);
  11. System.out.println(Father.f);
  12. System.out.println(Father.g);
  13. // System.out.println(h);//跨类不可见
  14. }
  15. public void fun(){
  16. Father obj = new Father();
  17. System.out.println(obj.a);
  18. System.out.println(obj.b);
  19. System.out.println(obj.c);
  20. // System.out.println(obj.d);//跨类不可见
  21. System.out.println(Father.e);
  22. System.out.println(Father.f);
  23. System.out.println(Father.g);
  24. // System.out.println(h);//跨类不可见
  25. }
  26. }
  1. package com.atguigu.test01.access1;
  2. //本包子类中
  3. public class Sub extends Father{
  4. public static void method(){
  5. //静态直接访问非静态都不行
  6. /* System.out.println(a);
  7. System.out.println(b);
  8. System.out.println(c);
  9. System.out.println(d);*/
  10. Father obj = new Father();
  11. System.out.println(obj.a);
  12. System.out.println(obj.b);
  13. System.out.println(obj.c);
  14. // System.out.println(obj.d);//跨类不可见
  15. System.out.println(e);
  16. System.out.println(f);
  17. System.out.println(g);
  18. // System.out.println(h);//跨类不可见
  19. }
  20. public void fun(){
  21. System.out.println(a);
  22. System.out.println(b);
  23. System.out.println(c);
  24. // System.out.println(d);//跨类不可见
  25. System.out.println(e);
  26. System.out.println(f);
  27. System.out.println(g);
  28. // System.out.println(h);//跨类不可见
  29. }
  30. }

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图1

示例二:跨包子类和非子类
  1. package com.atguigu.test01.access1;
  2. public class Father {
  3. public int a;
  4. protected int b;
  5. int c;
  6. private int d;
  7. public static int e;
  8. protected static int f;
  9. static int g;
  10. private static int h;
  11. }
  1. package com.atguigu.test01.other;
  2. import com.atguigu.test01.access1.Father;
  3. public class Another {
  4. public static void method(){
  5. Father obj = new Father();
  6. System.out.println(obj.a);
  7. // System.out.println(obj.b);//跨包非子类不可见
  8. // System.out.println(obj.c);//跨包不可见
  9. // System.out.println(obj.d);//跨类不可见
  10. System.out.println(Father.e);
  11. // System.out.println(Father.f);//跨包非子类不可见
  12. // System.out.println(Father.g);//跨包不可见
  13. // System.out.println(h);//跨类不可见
  14. }
  15. public void fun(){
  16. Father obj = new Father();
  17. System.out.println(obj.a);
  18. // System.out.println(obj.b);//跨包非子类不可见
  19. // System.out.println(obj.c);//跨包不可见
  20. // System.out.println(obj.d);//跨类不可见
  21. System.out.println(Father.e);
  22. // System.out.println(Father.f);//跨包非子类不可见
  23. // System.out.println(Father.g);//跨包不可见
  24. // System.out.println(h);//跨类不可见
  25. }
  26. }
  1. package com.atguigu.test01.other;
  2. import com.atguigu.test01.access1.Father;
  3. public class Son extends Father{
  4. public static void method(){
  5. //静态直接访问非静态都不行
  6. /* System.out.println(a);
  7. System.out.println(b);
  8. System.out.println(c);
  9. System.out.println(d);*/
  10. Father obj = new Father();
  11. System.out.println(obj.a);
  12. // System.out.println(obj.b);//跨包的静态成员
  13. //不能访问非静态的protected
  14. // System.out.println(obj.c);//跨包不可见
  15. // System.out.println(obj.d);//跨类不可见
  16. System.out.println(e);
  17. System.out.println(f);
  18. // System.out.println(g);//跨包不可见
  19. // System.out.println(h);//跨类不可见
  20. }
  21. public void fun(){
  22. System.out.println(a);
  23. System.out.println(b);
  24. // System.out.println(c);//跨包不可见
  25. // System.out.println(d);//跨类不可见
  26. System.out.println(e);
  27. System.out.println(f);
  28. // System.out.println(g);//跨包不可见
  29. // System.out.println(h);//跨类不可见
  30. }
  31. }

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图2

示例三:缺省的类
  1. package com.atguigu.test01.access1;
  2. class Mother {
  3. }
  1. package com.atguigu.test01.access1;
  2. public class Daughter extends Mother{
  3. }
  1. package com.atguigu.test01.other;
  2. //Mother类是缺省的,跨包不能使用
  3. public class Daughter extends Mother{
  4. }

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图3

示例四:公共的类缺省的构造器,跨包使用问题
  1. package com.atguigu.test01.access1;
  2. public class Fu {
  3. Fu(){
  4. }
  5. }
  1. package com.atguigu.test01.access1;
  2. public class Zi extends Fu{
  3. }
  1. package com.atguigu.test01.other;
  2. import com.atguigu.test01.access1.Fu;
  3. public class Zi extends Fu{
  4. Zi() {
  5. super();
  6. }
  7. }
  1. package com.atguigu.test01.access1;
  2. public class Neighbor {
  3. public static void main(String[] args) {
  4. Fu f = new Fu();
  5. }
  6. }
  1. package com.atguigu.test01.other;
  2. import com.atguigu.test01.access1.Fu;
  3. public class AnotherNeighbor {
  4. public static void main(String[] args) {
  5. Fu f = new Fu();
  6. }
  7. }

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图4

6.1.2 成员变量/属性私有化问题

成员变量(field)私有化之后,提供标准的get/set方法,我们把这种成员变量也称为属性(property)。或者可以说只要能通过get/set操作的就是事物的属性,哪怕它没有对应的成员变量。

1、成员变量封装的目的

  • 隐藏类的实现细节
  • 让使用者只能通过事先预定的方法来访问数据,从而可以在该方法里面加入控制逻辑,限制对成员变量的不合理访问。还可以进行数据检查,从而有利于保证对象信息的完整性。
  • 便于修改,提高代码的可维护性。主要说的是隐藏的部分,在内部修改了,如果其对外可以的访问方式不变的话,外部根本感觉不到它的修改。例如:Java8->Java9,String从char[]转为byte[]内部实现,而对外的方法不变,我们使用者根本感觉不到它内部的修改。

2、实现步骤

  1. 使用 private 修饰成员变量
  1. private 数据类型 变量名

代码如下:

  1. public class Chinese {
  2. private static String country;
  3. private String name;
  4. private int age;
  5. private boolean marry;
  6. }
  1. 提供 getXxx方法 / setXxx 方法,可以访问成员变量,代码如下:
  1. public class Chinese {
  2. private static String country;
  3. private String name;
  4. private int age;
  5. private boolean marry;
  6. public static void setCountry(String c){
  7. country = c;
  8. }
  9. public static String getCountry(){
  10. return country;
  11. }
  12. public void setName(String n) {
  13. name = n;
  14. }
  15. public String getName() {
  16. return name;
  17. }
  18. public void setAge(int a) {
  19. age = a;
  20. }
  21. public int getAge() {
  22. return age;
  23. }
  24. public void setMarry(boolean m){
  25. marry = m;
  26. }
  27. public boolean isMarry(){
  28. return marry;
  29. }
  30. }

3、如何解决局部变量与成员变量同名问题

当局部变量与类变量(静态成员变量)同名时,在类变量前面加“类名.”;

当局部变量与实例变量(非静态成员变量)同名时,在实例变量前面加“this.”

  1. public class Chinese {
  2. private static String country;
  3. private String name;
  4. private int age;
  5. public static void setCountry(String country){
  6. Chinese.country = country;
  7. }
  8. public static String getCountry(){
  9. return country;
  10. }
  11. public void setName(String name) {
  12. this.name = name;
  13. }
  14. public String getName() {
  15. return name;
  16. }
  17. public void setAge(int age) {
  18. this.age = age;
  19. }
  20. public int getAge() {
  21. return age;
  22. }
  23. }

4、 练习

(1)定义矩形类Rectangle,

  1. 声明静态变量sides,初始化为4,表示矩形边长的总数量;
  2. 声明实例变量长和宽
  3. 全部私有化,并提供相应的get/set方法

(2)在测试类中创建Rectangle对象,并调用相应的方法测试

(2)测试类ObjectArrayTest的main中创建一个可以装3个学生对象的数组,并且按照学生成绩排序,显示学生信息

6.2 构造器(Constructor)

我们发现我们new完对象时,所有成员变量都是默认值,如果我们需要赋别的值,需要挨个为它们再赋值,太麻烦了。我们能不能在new对象时,直接为当前对象的某个或所有成员变量直接赋值呢。

可以,Java给我们提供了构造器。

1、构造器的作用

在创建对象的时候为实例变量赋初始值。

注意:构造器只为实例变量初始化,不为静态类变量初始化

2、构造器的语法格式

构造器又称为构造方法,那是因为它长的很像方法。但是和方法还有有所区别的。

  1. 【修饰符】 构造器名(){
  2. // 实例初始化代码
  3. }
  4. 【修饰符】 构造器名(参数列表){
  5. // 实例初始化代码
  6. }

代码如下:

  1. public class Student {
  2. private String name;
  3. private int age;
  4. // 无参构造
  5. public Student() {}
  6. // 有参构造
  7. public Student(String name,int age) {
  8. this.name = name;
  9. this.age = age;
  10. }
  11. public String getName() {
  12. return name;
  13. }
  14. public void setName(String name) {
  15. this.name = name;
  16. }
  17. public int getAge() {
  18. return age;
  19. }
  20. public void setAge(int age) {
  21. this.age = age;
  22. }
  23. }

注意事项:

  1. 构造器名必须与它所在的类名必须相同。
  2. 它没有返回值,所以不需要返回值类型,甚至不需要void
  3. 如果你不提供构造器,系统会给出无参数构造器,并且该构造器的修饰符默认与类的修饰符相同
  4. 如果你提供了构造器,系统将不再提供无参数构造器,除非你自己定义。
  5. 构造器是可以重载的,既可以定义参数,也可以不定义参数。
  6. 构造器的修饰符只能是权限修饰符,不能被其他任何修饰

3、练习

(1)声明一个员工类,

  • 包含属性:编号、姓名、薪资、性别,要求属性私有化,提供get/set,
  • 提供无参构造器和有参构造器
  • 提供getInfo()

(2)在测试类的main中分别用无参构造和有参构造创建员工类对象,调用getInfo

  1. public class TestEmployee {
  2. public static void main(String[] args){
  3. //分别用无参构造和有参构造创建对象,调用getInfo
  4. Employee e1 = new Employee();
  5. System.out.println(e1.getInfo());
  6. Employee e2 = new Employee("1001","张三",110000,'男');
  7. System.out.println(e2.getInfo());
  8. e2.setSalary(120000);
  9. System.out.println(e2.getInfo());
  10. System.out.println("e1薪资:" + e1.getSalary());
  11. }
  12. }
  13. class Employee{
  14. private String id;
  15. private String name;
  16. private double salary;
  17. private char gender;
  18. //提供无参构造器和有参构造器
  19. public Employee(){
  20. }
  21. public Employee(String id, String name){
  22. this.id = id;
  23. this.name = name;
  24. }
  25. public Employee(String id, String name, double salary, char gender){
  26. this.id = id;
  27. this.name = name;
  28. this.salary = salary;
  29. this.gender = gender;
  30. }
  31. public String getId() {
  32. return id;
  33. }
  34. public void setId(String id) {
  35. this.id = id;
  36. }
  37. public String getName() {
  38. return name;
  39. }
  40. public void setName(String name) {
  41. this.name = name;
  42. }
  43. public double getSalary() {
  44. return salary;
  45. }
  46. public void setSalary(double salary) {
  47. this.salary = salary;
  48. }
  49. public char getGender() {
  50. return gender;
  51. }
  52. public void setGender(char gender) {
  53. this.gender = gender;
  54. }
  55. //提供getInfo()
  56. public String getInfo(){
  57. return "编号:" + id + ",姓名:" + name + ",薪资:" + salary + ",性别:" +gender;
  58. }
  59. }

6.3 标准JavaBean

JavaBean 是 Java语言编写类的一种标准规范。符合JavaBean 的类,要求:

(1)类必须是具体的和公共的,

(2)并且具有无参数的构造方法,

(3)成员变量私有化,并提供用来操作成员变量的setget 方法。

  1. public class ClassName{
  2. //成员变量
  3. //构造方法
  4. //无参构造方法【必须】
  5. //有参构造方法【建议】
  6. //getXxx()
  7. //setXxx()
  8. //其他成员方法
  9. }

编写符合JavaBean 规范的类,以学生类为例,标准代码如下:

  1. public class Student {
  2. // 成员变量
  3. private String name;
  4. private int age;
  5. // 构造方法
  6. public Student() {
  7. }
  8. public Student(String name, int age) {
  9. this.name = name;
  10. this.age = age;
  11. }
  12. // get/set成员方法
  13. public void setName(String name) {
  14. this.name = name;
  15. }
  16. public String getName() {
  17. return name;
  18. }
  19. public void setAge(int age) {
  20. this.age = age;
  21. }
  22. public int getAge() {
  23. return age;
  24. }
  25. //其他成员方法列表
  26. public String getInfo(){
  27. return "姓名:" + name + ",年龄:" + age;
  28. }
  29. }

测试类,代码如下:

  1. public class TestStudent {
  2. public static void main(String[] args) {
  3. // 无参构造使用
  4. Student s = new Student();
  5. s.setName("柳岩");
  6. s.setAge(18);
  7. System.out.println(s.getName() + "---" + s.getAge());
  8. System.out.println(s.getInfo());
  9. // 带参构造使用
  10. Student s2 = new Student("赵丽颖", 18);
  11. System.out.println(s2.getName() + "---" + s2.getAge());
  12. System.out.println(s2.getInfo());
  13. }
  14. }

6.4 继承

6.4.1 继承的概述

生活中的继承

  • 财产:富二代

  • 样貌:如图所示:
    尚硅谷__JavaSE_第6章 面向对象基础(中) - 图5
    尚硅谷__JavaSE_第6章 面向对象基础(中) - 图6
    尚硅谷__JavaSE_第6章 面向对象基础(中) - 图7

  • 才华:如图所示:
    尚硅谷__JavaSE_第6章 面向对象基础(中) - 图8

继承的由来

如图所示:

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图9

多个类中存在相同属性和行为时,将这些内容抽取到单独一个类中,那么多个类中无需再定义这些属性和行为,只需要和抽取出来的类构成某种关系。如图所示:

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图10

其中,多个类可以称为子类,也叫派生类;多个类抽取出来的这个类称为父类超类(superclass)或者基类

继承描述的是事物之间的所属关系,这种关系是:is-a 的关系。例如,图中猫属于动物,狗也属于动物。可见,父类更通用,子类更具体。我们通过继承,可以使多种事物之间形成一种关系体系。

继承的好处

  • 提高代码的复用性

  • 提高代码的扩展性

  • 类与类之间产生了关系,是学习多态的前提

6.4.2 继承的格式

通过 extends 关键字,可以声明一个子类继承另外一个父类,定义格式如下:

  1. 【修饰符】 class 父类 {
  2. ...
  3. }
  4. 【修饰符】 class 子类 extends 父类 {
  5. ...
  6. }

继承演示,代码如下:

  1. /*
  2. * 定义动物类Animal,做为父类
  3. */
  4. class Animal {
  5. // 定义name属性
  6. String name;
  7. // 定义age属性
  8. int age;
  9. // 定义动物的吃东西方法
  10. public void eat() {
  11. System.out.println(age + "岁的" + name + "在吃东西");
  12. }
  13. }
  14. /*
  15. * 定义猫类Cat 继承 动物类Animal
  16. */
  17. class Cat extends Animal {
  18. // 定义一个猫抓老鼠的方法catchMouse
  19. public void catchMouse() {
  20. System.out.println("抓老鼠");
  21. }
  22. }
  23. /*
  24. * 定义测试类
  25. */
  26. public class ExtendDemo01 {
  27. public static void main(String[] args) {
  28. // 创建一个猫类对象
  29. Cat cat = new Cat();
  30. // 为该猫类对象的name属性进行赋值
  31. cat.name = "Tom";
  32. // 为该猫类对象的age属性进行赋值
  33. cat.age = 2;
  34. // 调用该猫的catchMouse()方法
  35. cat.catchMouse();
  36. // 调用该猫继承来的eat()方法
  37. cat.eat();
  38. }
  39. }
  40. 演示结果:
  41. 抓老鼠
  42. 2岁的Tom在吃东西

6.4.3 继承的特点一:成员变量

1、父类成员变量私有化(private)

  • 父类中的成员,无论是公有(public)还是私有(private),均会被子类继承。
  • 子类虽会继承父类私有(private)的成员,但子类不能对继承的私有成员直接进行访问,可通过继承的get/set方法进行访问。如图所示:

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图11

代码如下:

  1. /*
  2. * 定义动物类Animal,做为父类
  3. */
  4. class Animal {
  5. // 定义name属性
  6. private String name;
  7. // 定义age属性
  8. public int age;
  9. // 定义动物的吃东西方法
  10. public void eat() {
  11. System.out.println(age + "岁的" + name + "在吃东西");
  12. }
  13. }
  14. /*
  15. * 定义猫类Cat 继承 动物类Animal
  16. */
  17. class Cat extends Animal {
  18. // 定义一个猫抓老鼠的方法catchMouse
  19. public void catchMouse() {
  20. System.out.println("抓老鼠");
  21. }
  22. }
  23. /*
  24. * 定义测试类
  25. */
  26. public class ExtendDemo01 {
  27. public static void main(String[] args) {
  28. // 创建一个猫类对象
  29. Cat cat = new Cat();
  30. // 为该猫类对象的name属性进行赋值
  31. //cat.name = "Tom";// 编译报错
  32. // 为该猫类对象的age属性进行赋值
  33. cat.age = 2;
  34. // 调用该猫的catchMouse()方法
  35. cat.catchMouse();
  36. // 调用该猫继承来的eat()方法
  37. cat.eat();
  38. }
  39. }

如图所示:

eclipse中Debug查看对象成员变量值的情况截图如下:

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图12

idea中Debug查看对象成员变量值的情况截图如下:

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图13

2、父子类成员变量重名

我们说父类的所有成员变量都会继承到子类中,那么如果子类出现与父类同名的成员变量会怎么样呢?

父类代码:

  1. public class Father {
  2. public int i=1;
  3. private int j=1;
  4. public int k=1;
  5. public int getJ() {
  6. return j;
  7. }
  8. public void setJ(int j) {
  9. this.j = j;
  10. }
  11. }

子类代码:

  1. public class Son extends Father{
  2. public int i=2;
  3. private int j=2;
  4. public int m=2;
  5. }

现在想要在子类Son中声明一个test()方法,并打印这些所有变量的值,该如何实现?

  1. public class Son extends Father{
  2. public int i=2;
  3. private int j=2;
  4. public int m=2;
  5. public void test() {
  6. System.out.println("父类继承的i:" + super.i);
  7. System.out.println("子类的i:" +i);
  8. // System.out.println(super.j);
  9. System.out.println("父类继承的j:" +getJ());
  10. System.out.println("子类的j:" +j);
  11. System.out.println("父类继承的k:" +k);
  12. System.out.println("子类的m:" +m);
  13. }
  14. }

结论:

(1)当父类的成员变量私有化时,在子类中是无法直接访问的,所以是否重名不影响,如果想要访问父类的私有成员变量,只能通过父类的get/set方法访问;

(2)当父类的成员变量非私有时,在子类中可以直接访问,所以如果有重名时,就需要加“super.”进行区别。

使用格式:

  1. super.父类成员变量名

以上test()调用结果:

  1. public class TestSon{
  2. public static void main(String[] args){
  3. Son s = new Son();
  4. s.test();
  5. }
  6. }
  1. 父类继承的i1
  2. 子类的i2
  3. 父类继承的j1
  4. 子类的j2
  5. 父类继承的k1
  6. 子类的m2

eclipse中Debug查看对象的成员变量的值截图如下:

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图14

idea中Debug查看对象的成员变量的值截图如下:

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图15

说明:虽然我们可以区分父子类的重名成员变量,但是实际开发中,我们不建议这么干。

6.4.4 继承的特点二:成员方法

我们说父类的所有方法子类都会继承,但是当某个方法被继承到子类之后,子类觉得父类原来的实现不适合于子类,该怎么办呢?我们可以进行方法重写 (Override)

1、方法重写

比如新的手机增加来电显示头像的功能,代码如下:

  1. class Phone {
  2. public void sendMessage(){
  3. System.out.println("发短信");
  4. }
  5. public void call(){
  6. System.out.println("打电话");
  7. }
  8. public void showNum(){
  9. System.out.println("来电显示号码");
  10. }
  11. }
  12. //智能手机类
  13. class NewPhone extends Phone {
  14. //重写父类的来电显示号码功能,并增加自己的显示姓名和图片功能
  15. public void showNum(){
  16. //调用父类已经存在的功能使用super
  17. super.showNum();
  18. //增加自己特有显示姓名和图片功能
  19. System.out.println("显示来电姓名");
  20. System.out.println("显示头像");
  21. }
  22. }
  23. public class ExtendsDemo06 {
  24. public static void main(String[] args) {
  25. // 创建子类对象
  26. NewPhone np = new NewPhone();
  27. // 调用父类继承而来的方法
  28. np.call();
  29. // 调用子类重写的方法
  30. np.showNum();
  31. }
  32. }

小贴士:这里重写时,用到super.父类成员方法,表示调用父类的成员方法。

注意事项:

1.@Override:写在方法上面,用来检测是不是有效的正确覆盖重写。这个注解就算不写,只要满足要求,也是正确的方法覆盖重写。建议保留

2.必须保证父子类之间方法的名称相同,参数列表也相同。
3.子类方法的返回值类型必须【小于等于】父类方法的返回值类型(小于其实就是是它的子类,例如:Student < Person)。

注意:如果返回值类型是基本数据类型和void,那么必须是相同

4.子类方法的权限必须【大于等于】父类方法的权限修饰符。
小扩展提示:public > protected > 缺省 > private

5.几种特殊的方法不能被重写

  • 静态方法不能被重写
  • 私有等在子类中不可见的方法不能被重写
  • final方法不能被重写

2、方法的重载

(1)同一个类中

  1. class Test{
  2. public int max(int a, int b){
  3. return a > b ? a : b;
  4. }
  5. public double max(double a, double b){
  6. return a > b ? a : b;
  7. }
  8. public int max(int a, int b,int c){
  9. return max(max(a,b),c);
  10. }
  11. }

(2)父子类中

  1. class Father{
  2. public void print(int i){
  3. System.out.println("i = " + i);
  4. }
  5. }
  6. class Son extends Father{
  7. public void print(int i,int j){
  8. System.out.println("i = " + i ",j = " + j);
  9. }
  10. }

对于Son类,相当于有两个print方法,一个形参列表是(int i),一个形参列表(int i, int j)

6.4.5 继承的特点三:构造方法

当类之间产生了关系,其中各类中的构造方法,又产生了哪些影响呢?

首先我们要回忆两个事情,构造方法的定义格式和作用。

  1. 构造方法的名字是与类名一致的。
    所以子类是无法继承父类构造方法的。

  2. 构造方法的作用是初始化实例变量的,而子类又会从父类继承所有成员变量
    所以子类的初始化过程中,必须先执行父类的初始化动作。子类的构造方法中默认有一个super() ,表示调用父类的实例初始化方法,父类成员变量初始化后,才可以给子类使用。代码如下:

  1. class Fu {
  2. private int n;
  3. Fu(){
  4. System.out.println("Fu()");
  5. }
  6. }
  7. class Zi extends Fu {
  8. Zi(){
  9. // super(),调用父类构造方法
  10. super();
  11. System.out.println("Zi()");
  12. }
  13. }
  14. public class ExtendsDemo07{
  15. public static void main (String args[]){
  16. Zi zi = new Zi();
  17. }
  18. }
  19. 输出结果:
  20. Fu()
  21. Zi()

如果父类没有无参构造怎么办?

  1. public class Person {
  2. private String name;
  3. private int age;
  4. public Person(String name, int age) {
  5. this.name = name;
  6. this.age = age;
  7. }
  8. //其他成员方法省略
  9. }
  1. public class Student extends Person{
  2. private int score;
  3. }

此时子类代码报错。

解决办法:在子类构造器中,用super(实参列表),显示调用父类的有参构造解决。

  1. public class Student extends Person{
  2. private int score;
  3. public Student(String name, int age) {
  4. super(name, age);
  5. }
  6. public Student(String name, int age, int score) {
  7. super(name, age);
  8. this.score = score;
  9. }
  10. //其他成员方法省略
  11. }

结论:

子类对象实例化过程中必须先完成从父类继承的成员变量的实例初始化,这个过程是通过调用父类的实例初始化方法来完成的。

  • super():表示调用父类的无参实例初始化方法,要求父类必须有无参构造,而且可以省略不写;
  • super(实参列表):表示调用父类的有参实例初始化方法,当父类没有无参构造时,子类的构造器首行必须写super(实参列表)来明确调用父类的哪个有参构造(其实是调用该构造器对应的实例初始方法)
  • super()和super(实参列表)都只能出现在子类构造器的首行

形式一:

  1. class A{
  2. }
  3. class B extends A{
  4. }
  5. class Test{
  6. public static void main(String[] args){
  7. B b = new B();
  8. //A类和B类都是默认有一个无参构造,B类的默认无参构造中还会默认调用A类的默认无参构造
  9. //但是因为都是默认的,没有打印语句,看不出来
  10. }
  11. }

形式二:

  1. class A{
  2. A(){
  3. System.out.println("A类无参构造器");
  4. }
  5. }
  6. class B extends A{
  7. }
  8. class Test{
  9. public static void main(String[] args){
  10. B b = new B();
  11. //A类显示声明一个无参构造,
  12. //B类默认有一个无参构造,
  13. //B类的默认无参构造中会默认调用A类的无参构造
  14. //可以看到会输出“A类无参构造器"
  15. }
  16. }

形式三:

  1. class A{
  2. A(){
  3. System.out.println("A类无参构造器");
  4. }
  5. }
  6. class B extends A{
  7. B(){
  8. System.out.println("B类无参构造器");
  9. }
  10. }
  11. class Test{
  12. public static void main(String[] args){
  13. B b = new B();
  14. //A类显示声明一个无参构造,
  15. //B类显示声明一个无参构造,
  16. //B类的无参构造中虽然没有写super(),但是仍然会默认调用A类的无参构造
  17. //可以看到会输出“A类无参构造器"和"B类无参构造器")
  18. }
  19. }

形式四:

  1. class A{
  2. A(){
  3. System.out.println("A类无参构造器");
  4. }
  5. }
  6. class B extends A{
  7. B(){
  8. super();
  9. System.out.println("B类无参构造器");
  10. }
  11. }
  12. class Test{
  13. public static void main(String[] args){
  14. B b = new B();
  15. //A类显示声明一个无参构造,
  16. //B类显示声明一个无参构造,
  17. //B类的无参构造中明确写了super(),表示调用A类的无参构造
  18. //可以看到会输出“A类无参构造器"和"B类无参构造器")
  19. }
  20. }

形式五:

  1. class A{
  2. A(int a){
  3. System.out.println("A类有参构造器");
  4. }
  5. }
  6. class B extends A{
  7. B(){
  8. System.out.println("B类无参构造器");
  9. }
  10. }
  11. class Test05{
  12. public static void main(String[] args){
  13. B b = new B();
  14. //A类显示声明一个有参构造,没有写无参构造,那么A类就没有无参构造了
  15. //B类显示声明一个无参构造,
  16. //B类的无参构造没有写super(...),表示默认调用A类的无参构造
  17. //编译报错,因为A类没有无参构造
  18. }
  19. }

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图16

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图17

形式六:

  1. class A{
  2. A(int a){
  3. System.out.println("A类有参构造器");
  4. }
  5. }
  6. class B extends A{
  7. B(){
  8. super();
  9. System.out.println("B类无参构造器");
  10. }
  11. }
  12. class Test06{
  13. public static void main(String[] args){
  14. B b = new B();
  15. //A类显示声明一个有参构造,没有写无参构造,那么A类就没有无参构造了
  16. //B类显示声明一个无参构造,
  17. //B类的无参构造明确写super(),表示调用A类的无参构造
  18. //编译报错,因为A类没有无参构造
  19. }
  20. }

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图18

形式七:

  1. class A{
  2. A(int a){
  3. System.out.println("A类有参构造器");
  4. }
  5. }
  6. class B extends A{
  7. B(int a){
  8. super(a);
  9. System.out.println("B类有参构造器");
  10. }
  11. }
  12. class Test07{
  13. public static void main(String[] args){
  14. B b = new B(10);
  15. //A类显示声明一个有参构造,没有写无参构造,那么A类就没有无参构造了
  16. //B类显示声明一个有参构造,
  17. //B类的有参构造明确写super(a),表示调用A类的有参构造
  18. //会打印“A类有参构造器"和"B类有参构造器"
  19. }
  20. }

形式八:

  1. class A{
  2. A(){
  3. System.out.println("A类无参构造器");
  4. }
  5. A(int a){
  6. System.out.println("A类有参构造器");
  7. }
  8. }
  9. class B extends A{
  10. B(){
  11. super();//可以省略,调用父类的无参构造
  12. System.out.println("B类无参构造器");
  13. }
  14. B(int a){
  15. super(a);//调用父类有参构造
  16. System.out.println("B类有参构造器");
  17. }
  18. }
  19. class Test8{
  20. public static void main(String[] args){
  21. B b1 = new B();
  22. B b2 = new B(10);
  23. }
  24. }

6.4.6 继承的特点四:单继承限制

  1. Java只支持单继承,不支持多继承。
  1. //一个类只能有一个父类,不可以有多个父类。
  2. class C extends A{} //ok
  3. class C extends AB... //error
  1. Java支持多层继承(继承体系)。
  1. class A{}
  2. class B extends A{}
  3. class C extends B{}

顶层父类是Object类。所有的类默认继承Object,作为父类。

  1. 子类和父类是一种相对的概念。
    例如:B类对于A来说是子类,但是对于C类来说是父类

  2. 一个父类可以同时拥有多个子类

6.4.7 继承练习

练习1

(1)父类Graphic图形
包含属性:name(图形名),属性私有化,不提供无参构造,只提供有参构造
包含求面积getArea():返回0.0
求周长getPerimeter()方法:返回0.0
显示信息getInfo()方法:返回图形名称、面积、周长

(2)子类Circle圆继承Graphic图形
包含属性:radius
重写求面积getArea()和求周长getPerimeter()方法,显示信息getInfo()加半径信息

(3)子类矩形Rectange继承Graphic图形
包含属性:length、width
重写求面积getArea()和求周长getPerimeter()方法

  1. public class Graphic {
  2. private String name;
  3. public Graphic(String name) {
  4. super();
  5. this.name = name;
  6. }
  7. public String getName() {
  8. return name;
  9. }
  10. public void setName(String name) {
  11. this.name = name;
  12. }
  13. public double getArea() {
  14. return 0.0;
  15. }
  16. public double getPerimeter() {
  17. return 0.0;
  18. }
  19. /*
  20. * this对象:调用当前方法的对象,如果是Graphic对象,那么就会执行Graphic的getArea()和getPerimeter()
  21. * this对象:调用当前方法的对象,如果是Circle对象,那么就会执行Circle的getArea()和getPerimeter()
  22. * this对象:调用当前方法的对象,如果是Rectangle对象,那么就会执行Rectangle的getArea()和getPerimeter()
  23. */
  24. public String getInfo() {
  25. return "图形:" + name + ",面积:" + getArea() + ",周长:" + getPerimeter();
  26. }
  27. }
  1. public class Circle extends Graphic {
  2. private double radius;
  3. public Circle(String name, double radius) {
  4. super(name);
  5. this.radius = radius;
  6. }
  7. public double getRadius() {
  8. return radius;
  9. }
  10. public void setRadius(double radius) {
  11. this.radius = radius;
  12. }
  13. @Override//表示这个方法是重写的方法
  14. public double getArea() {
  15. return Math.PI * radius * radius;
  16. }
  17. @Override//表示这个方法是重写的方法
  18. public double getPerimeter() {
  19. return Math.PI * radius * 2;
  20. }
  21. /*@Override//表示这个方法是重写的方法
  22. public String getInfo() {
  23. return super.getInfo() + ",半径:" + radius;
  24. }*/
  25. }
  1. public class Rectangle extends Graphic {
  2. private double length;
  3. private double width;
  4. public Rectangle(String name, double length, double width) {
  5. super(name);
  6. this.length = length;
  7. this.width = width;
  8. }
  9. public double getLength() {
  10. return length;
  11. }
  12. public void setLength(double length) {
  13. this.length = length;
  14. }
  15. public double getWidth() {
  16. return width;
  17. }
  18. public void setWidth(double width) {
  19. this.width = width;
  20. }
  21. @Override
  22. public double getArea() {
  23. return length*width;
  24. }
  25. @Override
  26. public double getPerimeter() {
  27. return 2*(length + width);
  28. }
  29. }
  1. public class TestGraphicExer3 {
  2. public static void main(String[] args) {
  3. Graphic g = new Graphic("通用图形");
  4. System.out.println(g.getInfo());
  5. Circle c = new Circle("圆", 1.2);
  6. System.out.println(c.getInfo());//调用getInfo()方法的对象是c
  7. Rectangle r = new Rectangle("矩形", 3, 5);
  8. System.out.println(r.getInfo());
  9. }
  10. }

练习2

(1)声明一个银行储蓄卡类,

  1. 包含属性:账户,余额
  2. 包含取款 public void withdraw(double money)
  3. 存款 pubic void save(double money)
  4. 获取账户信息: public String getInfo() 可以返回账户和余额

(2)声明一个银行信用卡类,继承储蓄卡类

  1. 增加属性:可透支额度,最多可透支金额
  2. 重写存款 public void withdraw(double money),可透支
  3. 存款 pubic void save(double money),需要恢复可透支额度

(3)在测试类中,分别创建两种卡对象,测试

练习3

1、声明父类:Person类
包含属性:姓名,年龄,性别
属性私有化,get/set
包含getInfo()方法:例如:姓名:张三,年龄:23,性别:男

2、声明子类:Student类,继承Person类
新增属性:score成绩
属性私有化,get/set
包含getInfo()方法:例如:姓名:张三,年龄:23,性别:男,成绩:89

3、声明子类:Teacher类,继承Person类
新增属性:salary薪资
属性私有化,get/set
包含getInfo()方法:例如:姓名:张三,年龄:23,性别:男,薪资:10000

  1. public class Person {
  2. private String name;
  3. private int age;
  4. private char gender;
  5. public Person(String name, int age, char gender) {
  6. super();
  7. this.name = name;
  8. this.age = age;
  9. this.gender = gender;
  10. }
  11. public Person() {
  12. super();
  13. }
  14. public String getName() {
  15. return name;
  16. }
  17. public void setName(String name) {
  18. this.name = name;
  19. }
  20. public int getAge() {
  21. return age;
  22. }
  23. public void setAge(int age) {
  24. this.age = age;
  25. }
  26. public char getGender() {
  27. return gender;
  28. }
  29. public void setGender(char gender) {
  30. this.gender = gender;
  31. }
  32. //包含getInfo()方法:例如:姓名:张三,年龄:23,性别:男
  33. public String getInfo(){
  34. return "姓名:" + name + ",年龄:" + age +",性别:" + gender;
  35. }
  36. }
  1. public class Student extends Person {
  2. private int score;
  3. public Student() {
  4. }
  5. public Student(String name, int age, char gender, int score) {
  6. setName(name);
  7. setAge(age);
  8. setGender(gender);
  9. this.score = score;
  10. }
  11. public int getScore() {
  12. return score;
  13. }
  14. public void setScore(int score) {
  15. this.score = score;
  16. }
  17. //包含getInfo()方法:例如:姓名:张三,年龄:23,性别:男,成绩:89
  18. public String getInfo(){
  19. //方式一:
  20. // return "姓名:" + getName() + ",年龄:" + getAge() + ",成绩:" + score;
  21. //方法二:
  22. return super.getInfo() + ",成绩:" + score;
  23. }
  24. }
  1. public class Teacher extends Person {
  2. private double salary;
  3. public Teacher() {
  4. }
  5. public Teacher(String name, int age, char gender, double salary) {
  6. setName(name);
  7. setAge(age);
  8. setGender(gender);
  9. this.salary = salary;
  10. }
  11. public double getSalary() {
  12. return salary;
  13. }
  14. public void setSalary(double salary) {
  15. this.salary = salary;
  16. }
  17. //包含getInfo()方法:例如:姓名:张三,年龄:23,性别:男,薪资:10000
  18. public String getInfo(){
  19. return super.getInfo() + ",薪资:" + salary;
  20. }
  21. }
  1. public class TestPersonExer2 {
  2. public static void main(String[] args) {
  3. Person p = new Person("张三", 23, '男');
  4. System.out.println(p.getInfo());
  5. Student s = new Student("陈琦", 25, '男', 89);
  6. System.out.println(s.getInfo());
  7. Teacher t = new Teacher("柴林燕", 18, '女', 11111);
  8. System.out.println(t.getInfo());
  9. }
  10. }

6.5 this和super关键字

6.5.1 this关键字

1、this的含义

this代表当前对象

2、this使用位置

  • this在实例初始化相关的代码块和构造器中:表示正在创建的那个实例对象,即正在new谁,this就代表谁
  • this在非静态实例方法中:表示调用该方法的对象,即谁在调用,this就代表谁。
  • this不能出现在静态代码块和静态方法中

3、this使用格式

(1)this.成员变量名

  • 当方法的局部变量与当前对象的成员变量重名时,就可以在成员变量前面加this.,如果没有重名问题,就可以省略this.
  • this.成员变量会先从本类声明的成员变量列表中查找,如果未找到,会去从父类继承的在子类中仍然可见的成员变量列表中查找

(2)this.成员方法

  • 调用当前对象的成员方法时,都可以加”this.”,也可以省略,实际开发中都省略
  • 当前对象的成员方法,先从本类声明的成员方法列表中查找,如果未找到,会去从父类继承的在子类中仍然可见的成员方法列表中查找

(3)this()或this(实参列表)

  • 只能调用本类的其他构造器

  • 必须在构造器的首行

  • 如果一个类中声明了n个构造器,则最多有 n - 1个构造器中使用了”this(【实参列表】)”,否则会发生递归调用死循环

6.5.2 super关键字

1、super的含义

super代表当前对象中从父类的引用的

2、super使用的前提

  • 通过super引用父类的xx,都是在子类中仍然可见的
  • 不能在静态代码块和静态方法中使用super

3、super的使用格式

(1)super.成员变量

在子类中访问父类的成员变量,特别是当子类的成员变量与父类的成员变量重名时。

  1. public class Person {
  2. private String name;
  3. private int age;
  4. //其他代码省略
  5. }
  6. public class Student extends Person{
  7. private int score;
  8. //其他成员方法省略
  9. }
  10. public class Test{
  11. public static void main(String[] args){
  12. Student stu = new Student();
  13. }
  14. }

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图19

  1. public class Test{
  2. public static void main(String[] args){
  3. Son s = new Son();
  4. s.test(30);
  5. }
  6. }
  7. class Father{
  8. int a = 10;
  9. }
  10. class Son extends Father{
  11. int a = 20;
  12. public void test(int a){
  13. System.out.println(super.a);//10
  14. System.out.println(this.a);//20
  15. System.out.println(a);//30
  16. }
  17. }

(2)super.成员方法

在子类中调用父类的成员方法,特别是当子类重写了父类的成员方法时

  1. public class Test{
  2. public static void main(String[] args){
  3. Son s = new Son();
  4. s.test();
  5. }
  6. }
  7. class Father{
  8. public void method(){
  9. System.out.println("aa");
  10. }
  11. }
  12. class Son extends Father{
  13. public void method(){
  14. System.out.println("bb");
  15. }
  16. public void test(){
  17. method();//bb
  18. this.method();//bb
  19. super.method();//aa
  20. }
  21. }

(3)super()或super(实参列表)

在子类的构造器首行,用于表示调用父类的哪个实例初始化方法

super() 和 this() 都必须是在构造方法的第一行,所以不能同时出现。

6.5.3 就近原则和追根溯源原则

1、找变量

  • 没有super和this

    • 在构造器、代码块、方法中如果出现使用某个变量,先查看是否是当前块声明的局部变量,
    • 如果不是局部变量,先从当前执行代码的本类去找成员变量
    • 如果从当前执行代码的本类中没有找到,会往上找父类的(非private,跨包还不能是缺省的)
  • this :代表当前对象

    • 通过this找成员变量时,先从当前执行代码的本类中找,没有的会往上找父类的(非private,跨包还不能是缺省的)。
  • super :代表父类的

    • 通过super找成员变量,直接从当前执行代码所在类的父类找
    • super()或super(实参列表)只能从直接父类找
    • 通过super只能访问父类在子类中可见的(非private,跨包还不能是缺省的)

注意:super和this都不能出现在静态方法和静态代码块中,因为super和this都是存在与对象中的

2、找方法

  • 没有super和this

    • 先从当前对象(调用方法的对象)的本类找,如果没有,再从直接父类找,再没有,继续往上追溯
  • this

    • 先从当前对象(调用方法的对象)的本类找,如果没有,再从父类继承的可见的方法列表中查找
  • super

    • 直接从当前对象(调用方法的对象)的父类继承的可见的方法列表中查找

3、找构造器

  • this()或this(实参列表):只从本类中,不会再往上追溯
  • super()或super(实参列表):只从直接父类找,不会再往上追溯

4、练习

(1)情形1
  1. class Father{
  2. int a = 10;
  3. int b = 11;
  4. }
  5. class Son extends Father{
  6. int a = 20;
  7. public void test(){
  8. //子类与父类的属性同名,子类对象中就有两个a
  9. System.out.println("父类的a:" + super.a);//10 直接从父类局部变量找
  10. System.out.println("子类的a:" + this.a);//20 先从本类成员变量找
  11. System.out.println("子类的a:" + a);//20 先找局部变量找,没有再从本类成员变量找
  12. //子类与父类的属性不同名,是同一个b
  13. System.out.println("b = " + b);//11 先找局部变量找,没有再从本类成员变量找,没有再从父类找
  14. System.out.println("b = " + this.b);//11 先从本类成员变量找,没有再从父类找
  15. System.out.println("b = " + super.b);//11 直接从父类局部变量找
  16. }
  17. public void method(int a){
  18. //子类与父类的属性同名,子类对象中就有两个成员变量a,此时方法中还有一个局部变量a
  19. System.out.println("父类的a:" + super.a);//10 直接从父类局部变量找
  20. System.out.println("子类的a:" + this.a);//20 先从本类成员变量找
  21. System.out.println("局部变量的a:" + a);//30 先找局部变量
  22. }
  23. public void fun(int b){
  24. System.out.println("b = " + b);//13 先找局部变量
  25. System.out.println("b = " + this.b);//11 先从本类成员变量找
  26. System.out.println("b = " + super.b);//11 直接从父类局部变量找
  27. }
  28. }
  29. public class TestInherite2 {
  30. public static void main(String[] args) {
  31. Son son = new Son();
  32. System.out.println(son.a);//20
  33. System.out.println(son.b);//11
  34. son.test();
  35. son.method(30);
  36. son.fun(13);
  37. }
  38. }

(2)情形2
  1. public class Test{
  2. public static void main(String[] args){
  3. Son s = new Son();
  4. System.out.println(s.getNum());//10 没重写,先找本类,没有,找父类
  5. Daughter d = new Daughter();
  6. System.out.println(d.getNum());//20 重写了,先找本类
  7. }
  8. }
  9. class Father{
  10. protected int num = 10;
  11. public int getNum(){
  12. return num;
  13. }
  14. }
  15. class Son extends Father{
  16. private int num = 20;
  17. }
  18. class Daughter extends Father{
  19. private int num = 20;
  20. public int getNum(){
  21. return num;
  22. }
  23. }

(3)情形3
  1. public class Test{
  2. public static void main(String[] args){
  3. Son s = new Son();
  4. s.test();
  5. Daughter d = new Daughter();
  6. d.test();
  7. }
  8. }
  9. class Father{
  10. protected int num = 10;
  11. public int getNum(){
  12. return num;
  13. }
  14. }
  15. class Son extends Father{
  16. private int num = 20;
  17. public void test(){
  18. System.out.println(getNum());//10 本类没有找父类
  19. System.out.println(this.getNum());//10 本类没有找父类
  20. System.out.println(super.getNum());//10 本类没有找父类
  21. }
  22. }
  23. class Daughter extends Father{
  24. private int num = 20;
  25. public int getNum(){
  26. return num;
  27. }
  28. public void test(){
  29. System.out.println(getNum());//20 先找本类
  30. System.out.println(this.getNum());//20 先找本类
  31. System.out.println(super.getNum());//10 直接找父类
  32. }
  33. }

6.6 成员变量初始化

6.6.1 成员变量初始化方式

1、成员变量有默认值

类别 具体类型 默认值
基本类型 整数(byte,short,int,long) 0
浮点数(float,double) 0.0
字符(char) ‘\u0000’
布尔(boolean) false
数据类型 默认值
引用类型 数组,类,接口 null

我们知道类中成员变量都有默认值,但是现在我们要为成员变量赋默认值以外的值,我们该怎么办呢?

2、显式赋值

  1. public class Student{
  2. public static final String COUNTRY = "中华人民共和国";
  3. private static String school = "尚硅谷";
  4. private String name;
  5. private char gender = '男';
  6. }

显式赋值,一般都是赋常量值

3、代码块

如果成员变量想要初始化的值不是一个硬编码的常量值,而是需要通过复杂的计算或读取文件、或读取运行环境信息等方式才能获取的一些值,该怎么办呢?

  • 静态初始化块:为静态变量初始化
  1. 【修饰符】 class 类名{
  2. static{
  3. 静态初始化
  4. }
  5. }
  • 实例初始化:为实例变量初始化
  1. 【修饰符】 class 类名{
  2. {
  3. 实例初始化块
  4. }
  5. }

静态初始化块:在类初始化时由类加载器调用执行,每一个类的静态初始化只会执行一次,早于实例对象的创建。

实例初始化块:每次new实例对象时自动执行,每new一个对象,执行一次。

  1. public class Student{
  2. private static String school;
  3. private String name;
  4. private char gender;
  5. static{
  6. //获取系统属性,这里只是说明school的初始化过程可能比较复杂
  7. school = System.getProperty("school");
  8. if(school==null) {
  9. school = "尚硅谷";
  10. }
  11. }
  12. {
  13. String info = System.getProperty("gender");
  14. if(info==null) {
  15. gender = '男';
  16. }else {
  17. gender = info.charAt(0);
  18. }
  19. }
  20. public static String getSchool() {
  21. return school;
  22. }
  23. public static void setSchool(String school) {
  24. Student.school = school;
  25. }
  26. public String getName() {
  27. return name;
  28. }
  29. public void setName(String name) {
  30. this.name = name;
  31. }
  32. public char getGender() {
  33. return gender;
  34. }
  35. public void setGender(char gender) {
  36. this.gender = gender;
  37. }
  38. }

4、构造器

我们发现,显式赋值和实例初始化块为每一个实例对象的实例变量初始化的都是相同的值,那么我们如果想要不同的实例对象初始化为不同的值,怎么办呢?此时我们可以考虑使用构造器,在new对象时由对象的创建者决定为当前对象的实例变量赋什么值。

注意:构造器只为实例变量初始化,不为静态类变量初始化

为实例变量初始化,再new对象时由对象的创建者决定为当前对象的实例变量赋什么值。

6.6.2 类初始化

1、类初始化的目的:为类中的静态变量进行赋值。

2、实际上,类初始化的过程时在调用一个()方法,而这个方法是编译器自动生成的。编译器会将如下两部分的所有代码,按顺序合并到类初始化()方法体中。
clinit are the static initialization blocks for the class, and static field initialization

(1)静态类成员变量的显式赋值语句

(2)静态代码块中的语句

3、整个类初始化只会进行一次,如果子类初始化时,发现父类没有初始化,那么会先初始化父类。

示例代码1:单个类

  1. public class Test{
  2. public static void main(String[] args){
  3. Father.test();
  4. }
  5. }
  6. class Father{
  7. private static int a = getNumber();//这里调用方法为a变量显式赋值的目的是为了看到这个过程
  8. static{
  9. System.out.println("Father(1)");
  10. }
  11. private static int b = getNumber();
  12. static{
  13. System.out.println("Father(2)");
  14. }
  15. public static int getNumber(){
  16. System.out.println("getNumber()");
  17. return 1;
  18. }
  19. public static void test(){
  20. System.out.println("Father:test()");
  21. }
  22. }
  1. 运行结果:
  2. getNumber()
  3. Father(1)
  4. getNumber()
  5. Father(2)
  6. Father:test()

示例代码2:父子类

  1. public class Test{
  2. public static void main(String[] args){
  3. Son.test();
  4. System.out.println("-----------------------------");
  5. Son.test();
  6. }
  7. }
  8. class Father{
  9. private static int a = getNumber();
  10. static{
  11. System.out.println("Father(1)");
  12. }
  13. private static int b = getNumber();
  14. static{
  15. System.out.println("Father(2)");
  16. }
  17. public static int getNumber(){
  18. System.out.println("Father:getNumber()");
  19. return 1;
  20. }
  21. }
  22. class Son extends Father{
  23. private static int a = getNumber();
  24. static{
  25. System.out.println("Son(1)");
  26. }
  27. private static int b = getNumber();
  28. static{
  29. System.out.println("Son(2)");
  30. }
  31. public static int getNumber(){
  32. System.out.println("Son:getNumber()");
  33. return 1;
  34. }
  35. public static void test(){
  36. System.out.println("Son:test()");
  37. }
  38. }
  1. 运行结果:
  2. Father:getNumber()
  3. Father(1)
  4. Father:getNumber()
  5. Father(2)
  6. Son:getNumber()
  7. Son(1)
  8. Son:getNumber()
  9. Son(2)
  10. Son:test()
  11. -----------------------------
  12. Son:test()

结论:

每一个类都有一个类初始化方法()方法,然后子类初始化时,如果发现父类加载和没有初始化,会先加载和初始化父类,然后再加载和初始化子类。一个类,只会初始化一次。

6.6.3 实例初始化

1、实例初始化的目的:为类中非静态成员变量赋值

2、实际上我们编写的代码在编译时,会自动处理代码,整理出一个()的类初始化方法,还会整理出一个或多个的(…)实例初始化方法。一个类有几个实例初始化方法,由这个类就有几个构造器决定。

init is the (or one of the) constructor(s) for the instance, and non-static field initialization.

实例初始化方法的方法体,由四部分构成:

(1)super()或super(实参列表) 这里选择哪个,看原来构造器首行是哪句,没写,默认就是super()

(2)非静态实例变量的显示赋值语句

(3)非静态代码块

(4)对应构造器中的代码

特别说明:其中(2)和(3)是按顺序合并的,(1)一定在最前面(4)一定在最后面

3、执行特点:

  • 创建对象时,才会执行
  • 每new一个对象,都会完成该对象的实例初始化
  • 调用哪个构造器,就是执行它对应的实例初始化方法
  • 创建子类对象时,父类对应的实例初始化会被先执行,执行父类哪个实例初始化方法,看用super()还是super(实参列表)

示例代码1:单个类

  1. public class Test{
  2. public static void main(String[] args){
  3. Father f1 = new Father();
  4. Father f2 = new Father("atguigu");
  5. }
  6. }
  7. class Father{
  8. private int a = getNumber();
  9. private String info;
  10. {
  11. System.out.println("Father(1)");
  12. }
  13. Father(){
  14. System.out.println("Father()无参构造");
  15. }
  16. Father(String info){
  17. this.info = info;
  18. System.out.println("Father(info)有参构造");
  19. }
  20. private int b = getNumber();
  21. {
  22. System.out.println("Father(2)");
  23. }
  24. public int getNumber(){
  25. System.out.println("Father:getNumber()");
  26. return 1;
  27. }
  28. }
  1. 运行结果:
  2. Father:getNumber()
  3. Father(1)
  4. Father:getNumber()
  5. Father(2)
  6. Father()无参构造
  7. Father:getNumber()
  8. Father(1)
  9. Father:getNumber()
  10. Father(2)
  11. Father(info)有参构造

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图20

示例代码2:父子类

  1. public class Test{
  2. public static void main(String[] args){
  3. Son s1 = new Son();
  4. System.out.println("-----------------------------");
  5. Son s2 = new Son("atguigu");
  6. }
  7. }
  8. class Father{
  9. private int a = getNumber();
  10. private String info;
  11. {
  12. System.out.println("Father(1)");
  13. }
  14. Father(){
  15. System.out.println("Father()无参构造");
  16. }
  17. Father(String info){
  18. this.info = info;
  19. System.out.println("Father(info)有参构造");
  20. }
  21. private int b = getNumber();
  22. {
  23. System.out.println("Father(2)");
  24. }
  25. public static int getNumber(){
  26. System.out.println("Father:getNumber()");
  27. return 1;
  28. }
  29. }
  30. class Son extends Father{
  31. private int a = getNumber();
  32. {
  33. System.out.println("Son(1)");
  34. }
  35. private int b = getNumber();
  36. {
  37. System.out.println("Son(2)");
  38. }
  39. public Son(){
  40. System.out.println("Son():无参构造");
  41. }
  42. public Son(String info){
  43. super(info);
  44. System.out.println("Son(info):有参构造");
  45. }
  46. public static int getNumber(){
  47. System.out.println("Son:getNumber()");
  48. return 1;
  49. }
  50. }
  1. 运行结果:
  2. Father:getNumber()
  3. Father(1)
  4. Father:getNumber()
  5. Father(2)
  6. Father()无参构造
  7. Son:getNumber()
  8. Son(1)
  9. Son:getNumber()
  10. Son(2)
  11. Son():无参构造
  12. -----------------------------
  13. Father:getNumber()
  14. Father(1)
  15. Father:getNumber()
  16. Father(2)
  17. Father(info)有参构造
  18. Son:getNumber()
  19. Son(1)
  20. Son:getNumber()
  21. Son(2)
  22. Son(info):有参构造

示例代码3:父子类,方法有重写

  1. public class Test{
  2. public static void main(String[] args){
  3. Son s1 = new Son();
  4. System.out.println("-----------------------------");
  5. Son s2 = new Son("atguigu");
  6. }
  7. }
  8. class Father{
  9. private int a = getNumber();
  10. private String info;
  11. {
  12. System.out.println("Father(1)");
  13. }
  14. Father(){
  15. System.out.println("Father()无参构造");
  16. }
  17. Father(String info){
  18. this.info = info;
  19. System.out.println("Father(info)有参构造");
  20. }
  21. private int b = getNumber();
  22. {
  23. System.out.println("Father(2)");
  24. }
  25. public int getNumber(){
  26. System.out.println("Father:getNumber()");
  27. return 1;
  28. }
  29. }
  30. class Son extends Father{
  31. private int a = getNumber();
  32. {
  33. System.out.println("Son(1)");
  34. }
  35. private int b = getNumber();
  36. {
  37. System.out.println("Son(2)");
  38. }
  39. public Son(){
  40. System.out.println("Son():无参构造");
  41. }
  42. public Son(String info){
  43. super(info);
  44. System.out.println("Son(info):有参构造");
  45. }
  46. public int getNumber(){
  47. System.out.println("Son:getNumber()");
  48. return 1;
  49. }
  50. }
  1. 运行结果:
  2. Son:getNumber() //子类重写getNumber()方法,那么创建子类的对象,就是调用子类的getNumber()方法,因为当前对象this是子类的对象。
  3. Father(1)
  4. Son:getNumber()
  5. Father(2)
  6. Father()无参构造
  7. Son:getNumber()
  8. Son(1)
  9. Son:getNumber()
  10. Son(2)
  11. Son():无参构造
  12. -----------------------------
  13. Son:getNumber()
  14. Father(1)
  15. Son:getNumber()
  16. Father(2)
  17. Father(info)有参构造
  18. Son:getNumber()
  19. Son(1)
  20. Son:getNumber()
  21. Son(2)
  22. Son(info):有参构造

6.6.4 类初始化与实例初始化

类初始化肯定优先于实例初始化。

类初始化只做一次。

实例初始化是每次创建对象都要进行。

  1. public class Test{
  2. public static void main(String[] args){
  3. Son s1 = new Son();
  4. System.out.println("----------------------------");
  5. Son s2 = new Son();
  6. }
  7. }
  8. class Father{
  9. static{
  10. System.out.println("Father:static");
  11. }
  12. {
  13. System.out.println("Father:not_static");
  14. }
  15. Father(){
  16. System.out.println("Father()无参构造");
  17. }
  18. }
  19. class Son extends Father{
  20. static{
  21. System.out.println("Son:static");
  22. }
  23. {
  24. System.out.println("Son:not_static");
  25. }
  26. Son(){
  27. System.out.println("Son()无参构造");
  28. }
  29. }
  1. 运行结果:
  2. Father:static
  3. Son:static
  4. Father:not_static
  5. Father()无参构造
  6. Son:not_static
  7. Son()无参构造
  8. ----------------------------
  9. Father:not_static
  10. Father()无参构造
  11. Son:not_static
  12. Son()无参构造

6.7 多态

6.7.1 引入

多态是继封装、继承之后,面向对象的第三大特性。

生活中,比如求面积的功能,圆、矩形、三角形实现起来是不一样的。跑的动作,小猫、小狗和大象,跑起来是不一样的。再比如飞的动作,昆虫、鸟类和飞机,飞起来也是不一样的。可见,同一行为,通过不同的事物,可以体现出来的不同的形态。那么此时就会出现各种子类的类型。

但是Java是强类型静态语言,既每一个变量在使用之前必须声明它确切的类型,然后之后的赋值和运算时都是严格按照这个数据类型来处理的。例如:

  1. int num = 10;
  2. String str = "hello";
  3. Student stu = new Student();

但是,有的时候,我们在设计一个数组、或一个方法的形参、返回值类型时,无法确定它具体的类型,只能确定它是某个系列的类型。

例如:想要设计一个数组用来存储各种图形的对象,并且按照各种图形的面积进行排序,但是具体存储的对象可能有圆、矩形、三角形等,那么各种图形的求面积方式又是不同的。

例如:想要设计一个方法,它的功能是比较两个图形的面积大小,返回面积较大的那个图形对象。那么此时形参和返回值类型是图形类型,但是不知道它具体是哪一种图形类型。

  1. Circle[] arr = new Circle[长度]; //只能装圆形对象
  2. Rectangle[] arr = new Rectangle[长度]; //只能装矩形对象
  3. //无法统一管理各种图形对象,例如:给各种图形对象按照面积排序
  4. //需要重载很多个方法,增加一种具体的图形,就需要增加一个方法
  5. public static Circle maxArea(Circle c1, Circle c2){//只能比较两个圆对象
  6. }
  7. public static Rectangle maxArea(Rectangle r1, Rectangle r2){//只能比较两个矩形对象
  8. }

这个时候,Java就引入了多态。

6.7.2 定义

1、格式

  1. 父类类型 变量名 = 子类对象;

父类类型:指子类对象继承的父类类型,或者实现的父接口类型。

例如:

  1. class Person{
  2. private String name;
  3. private int age;
  4. Person(String name, int age){
  5. this.name = name;
  6. this.age = age;
  7. }
  8. public void speak(){
  9. System.out.println(name + "说:我今年" + age);
  10. }
  11. }
  12. class Man extends Person{
  13. Man(String name, int age){
  14. super(name,age);
  15. }
  16. }
  17. class Woman extends Person{
  18. Woman(String name, int age){
  19. super(name,age);
  20. }
  21. }
  1. class Test{
  2. public static void main(String[] args){
  3. Person[] arr = new Person[2];
  4. arr[0] = new Man("张三",23);
  5. arr[1] = new Woman("如花",18);
  6. for(int i=0; i<arr.length; i++){
  7. arr[i].speak();
  8. }
  9. System.out.println("------------------------");
  10. show(new Man("张三",23));
  11. show(new Woman("如花",18));
  12. }
  13. public static void show(Person p){
  14. p.speak();
  15. }
  16. }

2、编译时类型与运行时类型不一致问题

  • 编译时,看“父类”,只能调用父类声明的方法,不能调用子类扩展的方法;

  • 运行时,看“子类”,一定是执行子类重写的方法体;

代码如下:

定义父类:

  1. public class Animal {
  2. public void eat(){
  3. System.out.println("吃~~~");
  4. }
  5. }

定义子类:

  1. class Cat extends Animal {
  2. public void eat() {
  3. System.out.println("吃鱼");
  4. }
  5. public void catchMouse(){
  6. System.out.println("抓老鼠");
  7. }
  8. }
  9. class Dog extends Animal {
  10. public void eat() {
  11. System.out.println("吃骨头");
  12. }
  13. }

定义测试类:

  1. public class Test {
  2. public static void main(String[] args) {
  3. // 多态形式,创建对象
  4. Animal a1 = new Cat();
  5. // 调用的是 Cat 的 eat
  6. a1.eat();
  7. //a1.catchMouse();//错误,catchMouse()是子类扩展的方法,父类中没有
  8. /*
  9. 多态引用,编译时,看“父类”,只能调用父类声明的方法;
  10. 运行时,看“子类”,一定是执行子类重写的方法体;
  11. */
  12. // 多态形式,创建对象
  13. Animal a2 = new Dog();
  14. // 调用的是 Dog 的 eat
  15. a2.eat();
  16. }
  17. }

6.7.5 多态的应用

1、多态应用在形参实参

父类类型作为方法形式参数,子类对象为实参。

代码如下:

  1. public class Test01 {
  2. public static void main(String[] args) {
  3. showAnimalEat(new Dog()); //形参 Animal a,实参new Dog()
  4. //实参给形参赋值 Animal a = new Dog() 多态引用
  5. showAnimalEat(new Cat());//形参 Animal a,实参new Cat()
  6. //实参给形参赋值 Animal a = new Cat() 多态引用
  7. }
  8. /*
  9. * 设计一个方法,可以查看所有动物的吃的行为
  10. * 关注的是所有动物的共同特征:eat()
  11. * 所以形参,设计为父类的类型
  12. * 此时不关注子类特有的方法
  13. */
  14. public static void showAnimalEat (Animal a){
  15. a.eat();
  16. // a.catchMouse();//错误,因为a现在编译时类型是Animal,只能看到父类中有的方法
  17. }
  18. }

2、多态应用在数组

数组元素类型声明为父类类型,实际存储的是子类对象

  1. public class Test02 {
  2. public static void main(String[] args) {
  3. /*
  4. * 声明一个数组,可以装各种动物的对象,看它们吃东西的样子
  5. */
  6. Animal[] arr = new Animal[2]; //此时不是new Animal的对象,而是new Animal[]的数组对象
  7. //在堆中开辟了长度为5的数组空间,用来装Animal或它子类对象的地址
  8. arr[0] = new Cat();//多态引用 左边arr[0] 是Animal类型,右边是new Cat()
  9. //把Cat对象,赋值给Animal类型的变量
  10. arr[1] = new Dog();
  11. for (int i = 0; i < arr.length; i++) {
  12. arr[i].eat();
  13. // arr[i].catchMouse();错误,因为arr[i]现在编译时类型是Animal,只能看到父类中有的方法
  14. }
  15. }
  16. }

3、多态应用在返回值

方法的返回值类型声明为父类的类型,实际返回值是子类对象

  1. public class Test03 {
  2. public static void main(String[] args) {
  3. Animal c = buy("猫咪");
  4. System.out.println(c.getClass());
  5. c.eat();
  6. }
  7. /*
  8. * 设计一个方法,可以购买各种动物的对象,此时不确定是那种具体的动物
  9. *
  10. * 返回值类型是父类的对象
  11. *
  12. * 多态体现在 返回值类型 Animal ,实际返回的对象是子类的new Cat(),或new Dog()
  13. */
  14. public static Animal buy(String name){
  15. if("猫咪".equals(name)){
  16. return new Cat();
  17. }else if("小狗".equals(name)){
  18. return new Dog();
  19. }
  20. return null;
  21. }
  22. }

6.7.6 多态练习

练习1:

(1)声明父类Traffic,包含方法public void drive()
(2)声明子类Car,Bicycle等,并重写drive方法
(3)在测试类的main中创建一个数组,有各种交通工具,遍历调用drive()方法
模拟马路上跑的各种交通工具

  1. public class Traffic {
  2. public void drive(){
  3. System.out.println("~~~~");
  4. }
  5. }
  1. public class Car extends Traffic {
  2. @Override
  3. public void drive() {
  4. System.out.println("滴滴滴...");
  5. }
  6. }
  1. public class Bicycle extends Traffic {
  2. @Override
  3. public void drive() {
  4. System.out.println("蹬蹬蹬。。。");
  5. }
  6. }
  1. public class TestExer1 {
  2. public static void main(String[] args) {
  3. //右边这些是用匿名对象,初始化数组
  4. Traffic[] arr = {new Car(),new Bicycle(),new Car(),new Bicycle()};
  5. for (int i = 0; i < arr.length; i++) {
  6. arr[i].drive();
  7. }
  8. }
  9. }

练习2:

(1)声明一个父类Person类,public void toilet()

(2)声明一个子类Woman类,重写方法
(3)声明一个子类Man类,重写方法
(4)在测试类中声明一个方法,
public static void goToToilet(Person p){
p.toilet();
}
在main中,创建不同子类对象,调用goToToilet方法进行测试

  1. public class Person {
  2. public void toilet(){
  3. System.out.println("~~~");
  4. }
  5. }
  1. public class Man extends Person {
  2. @Override
  3. public void toilet() {
  4. System.out.println("站着..");
  5. }
  6. }
  1. public class Woman extends Person {
  2. @Override
  3. public void toilet() {
  4. System.out.println("坐着..");
  5. }
  6. }
  1. public class TestPerson {
  2. public static void main(String[] args) {
  3. goToToilet(new Woman());//隐含了Person p = new Woman();
  4. goToToilet(new Man());//隐含了Person p = new Man();
  5. }
  6. public static void goToToilet(Person p){
  7. p.toilet();
  8. }
  9. }

练习3:

1、声明一个父类Employee员工类型,有属性,姓名(String)
有方法,public double earning() 用于返回实发工资,默认返回0
public String getInfo():显示姓名和实发工资

2、声明一个子类SalaryEmployee正式工,继承父类Employee,增加属性,薪资,工作日天数,请假天数
重写方法,public double earning()返回实发工资,实发工资 = 薪资 - 薪资/工作日天数 * 请假天数,

3、声明一个子类HourEmployee小时工,继承父类Employee
有属性,工作小时数,每小时多少钱
重写方法,public double earning()返回实发工资, 实发工资 = 每小时多少钱 * 小时数

4、声明一个子类Manager经理,继承SalaryEmployee,增加属性:奖金比例
重写方法,public double earning()返回实发工资,实发工资 = (薪资 - 薪资/工作日天数 请假天数)(1+奖金比例)

5、你现在是财务,需要查看每个人的实发工资,并查看工资总额。
声明一个员工数组,存储各种员工,并遍历显示他们的姓名和实发工资,并计算所有员工的工资总额

  1. public class Employee {
  2. private String name;
  3. public Employee(String name) {
  4. super();
  5. this.name = name;
  6. }
  7. public Employee() {
  8. super();
  9. }
  10. public String getName() {
  11. return name;
  12. }
  13. public void setName(String name) {
  14. this.name = name;
  15. }
  16. public double earning(){
  17. return 0.0;
  18. }
  19. public String getInfo() {
  20. return "姓名:" + name + ",实发工资:" + earning();
  21. }
  22. }
  1. public class SalaryEmployee extends Employee {
  2. private double salary;
  3. private int workingDays;//工作日天数,
  4. private double offDays;//请假天数
  5. public SalaryEmployee() {
  6. super();
  7. }
  8. public SalaryEmployee(String name, double salary, int workingDays, double offDays) {
  9. super(name);
  10. this.salary = salary;
  11. this.workingDays = workingDays;
  12. this.offDays = offDays;
  13. }
  14. public double getSalary() {
  15. return salary;
  16. }
  17. public void setSalary(double salary) {
  18. this.salary = salary;
  19. }
  20. public int getWorkingDays() {
  21. return workingDays;
  22. }
  23. public void setWorkingDays(int workingDays) {
  24. this.workingDays = workingDays;
  25. }
  26. public double getOffDays() {
  27. return offDays;
  28. }
  29. public void setOffDays(double offDays) {
  30. this.offDays = offDays;
  31. }
  32. /*
  33. * 重写方法,public double earning()返回实发工资,
  34. 实发工资 = 薪资 - 薪资/工作日天数 * 请假天数
  35. */
  36. @Override
  37. public double earning() {
  38. return salary - salary/workingDays * offDays;
  39. }
  40. }
  1. public class HourEmployee extends Employee {
  2. private double moneyPerHour;
  3. private double hours;
  4. public HourEmployee() {
  5. super();
  6. }
  7. public HourEmployee(String name, double moneyPerHour, double hours) {
  8. super(name);
  9. this.moneyPerHour = moneyPerHour;
  10. this.hours = hours;
  11. }
  12. public double getMoneyPerHour() {
  13. return moneyPerHour;
  14. }
  15. public void setMoneyPerHour(double moneyPerHour) {
  16. this.moneyPerHour = moneyPerHour;
  17. }
  18. public double getHours() {
  19. return hours;
  20. }
  21. public void setHours(double hours) {
  22. this.hours = hours;
  23. }
  24. /*
  25. * 重写方法,public double earning()返回实发工资,
  26. 实发工资 = 每小时多少钱 * 小时数
  27. */
  28. @Override
  29. public double earning() {
  30. return moneyPerHour * hours;
  31. }
  32. }
  1. public class Manager extends SalaryEmployee {
  2. private double commisionPer;
  3. public Manager() {
  4. super();
  5. }
  6. public Manager(String name, double salary, int workingDays, double offDays, double commisionPer) {
  7. super(name, salary, workingDays, offDays);
  8. this.commisionPer = commisionPer;
  9. }
  10. public double getCommisionPer() {
  11. return commisionPer;
  12. }
  13. public void setCommisionPer(double commisionPer) {
  14. this.commisionPer = commisionPer;
  15. }
  16. @Override
  17. public double earning() {
  18. return super.earning() * (1+commisionPer);
  19. }
  20. }
  1. public class TestEmployee {
  2. public static void main(String[] args) {
  3. Employee[] all = new Employee[3];
  4. all[0] = new HourEmployee("张三", 50, 50);
  5. all[1] = new SalaryEmployee("李四", 10000, 22, 1);
  6. all[2] = new Manager("老王", 20000, 22, 0, 0.3);
  7. double sum = 0;
  8. for (int i = 0; i < all.length; i++) {
  9. System.out.println(all[i].getInfo());
  10. sum += all[i].earning();
  11. }
  12. System.out.println("总额:" + sum);
  13. }
  14. }

6.7.7 向上转型与向下转型

首先,一个对象在new的时候创建是哪个类型的对象,它从头至尾都不会变。即这个对象的运行时类型,本质的类型用于不会变。这个和基本数据类型的转换是不同的。

但是,把这个对象赋值给不同类型的变量时,这些变量的编译时类型却不同。

  1. class Animal {
  2. void eat(){
  3. System.out.println("~~~");
  4. }
  5. }
  6. class Cat extends Animal {
  7. public void eat() {
  8. System.out.println("吃鱼");
  9. }
  10. public void catchMouse() {
  11. System.out.println("抓老鼠");
  12. }
  13. }
  14. class Dog extends Animal {
  15. public void eat() {
  16. System.out.println("吃骨头");
  17. }
  18. public void watchHouse() {
  19. System.out.println("看家");
  20. }
  21. }
  22. class Test{
  23. public static void main(String[] args){
  24. Cat a = new Cat();//a编译时类型是Cat
  25. Animal b = a;//b编译时类型是Animal
  26. Object c = a;//c编译时类型是Object
  27. //运行时类型
  28. System.out.println(a.getClass());
  29. System.out.println(b.getClass());
  30. System.out.println(c.getClass());
  31. //以上输出都一样,都是Cat类型
  32. //a,b,c的编译时类型不同
  33. //通过a能调用Cat中所有方法,包括从父类继承的,包括自己扩展的
  34. //通过b只能调用Animal类及它的父类有的方法,不能调用Cat扩展的方法
  35. //通过c只能调用Object类才有的方法
  36. }
  37. }

为什么要类型转换呢?

因为多态,就一定会有把子类对象赋值给父类变量的时候,这个时候,在编译期间,就会出现类型转换的现象。

但是,使用父类变量接收了子类对象之后,我们就不能调用子类拥有,而父类没有的方法了。这也是多态给我们带来的一点”小麻烦”。所以,想要调用子类特有的方法,必须做类型转换。

  • 向上转型:当左边的变量的类型(父类) > 右边对象/变量的类型(子类),我们就称为向上转型

    • 此时,编译时按照左边变量的类型处理,就只能调用父类中有的变量和方法,不能调用子类特有的变量和方法了
    • 但是,运行时,仍然是对象本身的类型
    • 此时,一定是安全的,而且也是自动完成的
  • 向下转型:当左边的变量的类型(子类)<右边对象/变量的类型(父类),我们就称为向下转型

    • 此时,编译时按照左边变量的类型处理,就可以调用子类特有的变量和方法了
    • 但是,运行时,仍然是对象本身的类型
    • 此时,不一定是安全的,需要使用(类型)进行强制类型转换
    • 不是所有通过编译的向下转型都是正确的,可能会发生ClassCastException,为了安全,可以通过isInstanceof关键字进行判断

示例代码:

  1. public class Test {
  2. public static void main(String[] args) {
  3. // 向上转型
  4. Animal a = new Cat();
  5. a.eat(); // 调用的是 Cat 的 eat
  6. // 向下转型
  7. Cat c = (Cat)a;
  8. c.catchMouse(); // 调用的是 Cat 的 catchMouse
  9. // 向下转型
  10. //Dog d = (Dog)a; //这段代码可以通过编译,但是运行时,却报出了ClassCastException
  11. //这是因为,明明创建了Cat类型对象,运行时,当然不能转换成Dog对象的。这两个类型并没有任何继承关系, //不符合类型转换的定义。
  12. //d.watchHouse(); // 调用的是 Dog 的 watchHouse
  13. Animal a2 = new Animal();
  14. // Dog d2 = (Dog)a2;//这段代码可以通过编译,但是运行时,却报出了ClassCastException
  15. // d2.watchHouse(); // 调用的是 Dog 的 watchHouse
  16. }
  17. }

为了避免ClassCastException的发生,Java提供了 instanceof 关键字,给引用变量做类型的校验,只要用instanceof判断返回true的,那么强转为该类型就一定是安全的,不会报ClassCastException异常。

  1. 变量名/对象 instanceof 数据类型

所以,转换前,我们最好先做一个判断,代码如下:

  1. public class Test {
  2. public static void main(String[] args) {
  3. // 向上转型
  4. Animal a = new Cat();
  5. a.eat(); // 调用的是 Cat 的 eat
  6. // 向下转型
  7. if (a instanceof Cat){
  8. Cat c = (Cat)a;
  9. c.catchMouse(); // 调用的是 Cat 的 catchMouse
  10. } else if (a instanceof Dog){
  11. Dog d = (Dog)a;
  12. d.watchHouse(); // 调用的是 Dog 的 watchHouse
  13. }
  14. }
  15. }

那么,哪些instanceof判断会返回true呢?

  • 对象/变量的编译时类型 与 instanceof后面数据类型是直系亲属关系才可以比较
  • 对象/变量的运行时类型<= instanceof后面数据类型,才为true

示例代码:

  1. class Person{
  2. //方法代码省略...
  3. }
  4. class Woman extends Person{
  5. //方法代码省略...
  6. }
  7. class ChineseWoman extends Woman{
  8. //方法代码省略...
  9. }
  10. class Man extends Person{
  11. }
  1. /*
  2. * 1、instanceof 前面的对象与后面的类型有没有要求
  3. * instanceof 前面的对象的编译时类型,必须与 instanceof后面的类型有直系关系
  4. * 2、instanceof 什么时候返回true
  5. * instanceof 前面的对象的运行时类型,确实 <= instanceof后面的类型,直系关系
  6. *
  7. */
  8. public class TestInstanceof {
  9. public static void main(String[] args) {
  10. Man m = new Man();
  11. // System.out.println(m instanceof Woman);//错误 m的编译时类型是Man,它和Woman不是直系关系
  12. Person p1 = new Man();
  13. System.out.println(p1 instanceof Woman);
  14. //可以,p1的编译时类型是Person,它和Woman是直系关系
  15. //但是p1的运行时类型是Man,返回false
  16. Person p2 = new Woman();
  17. System.out.println(p2 instanceof Woman);
  18. //p2的编译时类型是Person,它和Woman是直系关系
  19. //p2的运行时类型是Woman,返回true
  20. Person p3 = new ChineseWoman();
  21. System.out.println(p2 instanceof Woman);
  22. //p3的编译时类型是Person,它和Woman是直系关系
  23. //但是p3的运行时类型是ChineseWoman, ChineseWoman<=Woman,所以返回true
  24. }
  25. }
  1. public class Test{
  2. public static void main(String[] args){
  3. Person p1 = new Person();
  4. Person p2 = new Woman();
  5. Person p3 = new ChineseWoman();
  6. Person p4 = new Man();
  7. Object p5 = new Woman();
  8. ChineseWoman p6 = new ChineseWoman();
  9. //因为p1的运行时类型是Person类型,编译时类型是Person
  10. System.out.println(p1 instanceof Object);//true Person < Object类型
  11. System.out.println(p1 instanceof Person);//true Person = Person类型
  12. System.out.println(p1 instanceof Woman);//false Person > Woman类型
  13. System.out.println(p1 instanceof ChineseWoman);//false Person > ChineseWoman类型
  14. System.out.println(p1 instanceof Man);//false Person > Man类型
  15. System.out.println("------------------------");
  16. //因为p2的运行时类型是Woman类型,编译时类型是Person
  17. System.out.println(p2 instanceof Object);//true Woman < Object类型
  18. System.out.println(p2 instanceof Person);//true Woman < Person类型
  19. System.out.println(p2 instanceof Woman);//true Woman = Woman类型
  20. System.out.println(p2 instanceof ChineseWoman);//false Woman > ChineseWoman类型
  21. System.out.println(p2 instanceof Man);//false Woman 和Man 是平级关系,没有父子类关系
  22. System.out.println("------------------------");
  23. //因为p3的运行时类型是ChineseWoman,编译时类型是Person
  24. System.out.println(p3 instanceof Object);//true ChineseWoman < Object类型
  25. System.out.println(p3 instanceof Person);//true ChineseWoman < Person类型
  26. System.out.println(p3 instanceof Woman);//true ChineseWoman < Woman类型
  27. System.out.println(p3 instanceof ChineseWoman);//true ChineseWoman = ChineseWoman类型
  28. System.out.println(p3 instanceof Man);//false ChineseWoman 和 Man 是叔侄挂心,不是父子类关系
  29. System.out.println("------------------------");
  30. //因为p4的运行时类型是Man,编译时类型是Person
  31. System.out.println(p4 instanceof Object);//true Man < Object类型
  32. System.out.println(p4 instanceof Person);//true Man < Person类型
  33. System.out.println(p4 instanceof Woman);//false Woman 和Man 是平级关系,没有父子类关系
  34. System.out.println(p4 instanceof ChineseWoman);//false ChineseWoman 和 Man 是叔侄挂心,不是父子类关系
  35. System.out.println(p4 instanceof Man);//true Man = Man类型
  36. System.out.println("------------------------");
  37. //因为p5的运行时类型是Woman类型,编译时类型是Object
  38. System.out.println(p5 instanceof Object);//true Woman < Object类型
  39. System.out.println(p5 instanceof Person);//true Woman < Person类型
  40. System.out.println(p5 instanceof Woman);//true Woman = Woman类型
  41. System.out.println(p5 instanceof ChineseWoman);//false Woman > ChineseWoman类型
  42. System.out.println(p5 instanceof Man);//false Woman 和Man 是平级关系,没有父子类关系
  43. System.out.println("------------------------");
  44. //因为p6的运行时类型是ChineseWoman,编译时类型是ChineseWoman
  45. System.out.println(p6 instanceof Object);//true ChineseWoman < Object类型
  46. System.out.println(p6 instanceof Person);//true ChineseWoman < Person类型
  47. System.out.println(p6 instanceof Woman);//true ChineseWoman < Woman类型
  48. System.out.println(p6 instanceof ChineseWoman);//true ChineseWoman = ChineseWoman类型
  49. // System.out.println(p6 instanceof Man);//编译不通过,因为p6的编译时类型是ChineseWoman,和Man不是直系亲属关系
  50. System.out.println("------------------------");
  51. }
  52. }

练习题

1、声明一个父类Employee员工类型,
有属性,姓名(String),出生日期(MyDate类型,也是自定义的含年,月,日属性日期类型)
有方法,public abstract double earning()
public String getInfo():显示姓名和实发工资

2、声明一个子类SalaryEmployee正式工,继承父类Employee
增加属性,薪资,工作日天数,请假天数
重写方法,public double earning()返回实发工资, 实发工资 = 薪资 - 薪资/工作日天数 * 请假天数,
重写方法,public String getInfo():显示姓名和实发工资,月薪,工作日天数,请假天数

3、声明一个子类HourEmployee小时工,继承父类Employee
有属性,工作小时数,每小时多少钱
重写方法,public double earning()返回实发工资, 实发工资 = 每小时多少钱 * 小时数
重写方法,public String getInfo():显示姓名和实发工资,时薪,工作小时数
增加方法,public void leave():打印查看使用工具是否损坏,需要赔偿

4、声明一个子类Manager经理,继承SalaryEmployee
增加属性:奖金,奖金比例
重写方法,public double earning()返回实发工资, 实发工资 = (薪资 - 薪资/工作日天数 请假天数)(1+奖金比例)
重写方法,public String getInfo():显示姓名和实发工资,月薪,工作日天数,请假天数,奖金比例

5、声明一个员工数组,存储各种员工,
你现在是人事,从键盘输入当前的月份,需要查看每个人的详细信息。
如果他是正式工(包括SalaryEmployee和Manager),并且是本月生日的,祝福生日快乐,通知领取生日礼物。如果是HourEmployee显示小时工,就进行完工检查,即调用leave方法

  1. public abstract class Employee {
  2. private String name;
  3. private MyDate birthday;
  4. public Employee(String name, MyDate birthday) {
  5. super();
  6. this.name = name;
  7. this.birthday = birthday;
  8. }
  9. public Employee(String name, int year, int month, int day) {
  10. super();
  11. this.name = name;
  12. this.birthday = new MyDate(year, month, day);
  13. }
  14. public Employee() {
  15. super();
  16. }
  17. public String getName() {
  18. return name;
  19. }
  20. public void setName(String name) {
  21. this.name = name;
  22. }
  23. public MyDate getBirthday() {
  24. return birthday;
  25. }
  26. public void setBirthday(MyDate birthday) {
  27. this.birthday = birthday;
  28. }
  29. public abstract double earning();
  30. public String getInfo(){
  31. return "姓名:" + name + ",生日:" + birthday.getInfo() +",实发工资:" + earning();
  32. }
  33. }
  1. public class SalaryEmployee extends Employee {
  2. private double salary;
  3. private int workingDays;//工作日天数,
  4. private double offDays;//请假天数
  5. public SalaryEmployee() {
  6. super();
  7. }
  8. public SalaryEmployee(String name, int year, int month, int day, double salary, int workingDays, double offDays) {
  9. super(name, year, month, day);
  10. this.salary = salary;
  11. this.workingDays = workingDays;
  12. this.offDays = offDays;
  13. }
  14. public SalaryEmployee(String name, MyDate birthday, double salary, int workingDays, double offDays) {
  15. super(name, birthday);
  16. this.salary = salary;
  17. this.workingDays = workingDays;
  18. this.offDays = offDays;
  19. }
  20. public double getSalary() {
  21. return salary;
  22. }
  23. public void setSalary(double salary) {
  24. this.salary = salary;
  25. }
  26. public int getWorkingDays() {
  27. return workingDays;
  28. }
  29. public void setWorkingDays(int workingDays) {
  30. this.workingDays = workingDays;
  31. }
  32. public double getOffDays() {
  33. return offDays;
  34. }
  35. public void setOffDays(double offDays) {
  36. this.offDays = offDays;
  37. }
  38. /*
  39. * 重写方法,public double earning()返回实发工资,
  40. 实发工资 = 薪资 - 薪资/工作日天数 * 请假天数
  41. */
  42. @Override
  43. public double earning() {
  44. return salary - salary/workingDays * offDays;
  45. }
  46. @Override
  47. public String getInfo() {
  48. return super.getInfo() + ",月薪:" + salary + ",工作日:" + workingDays +",请假天数:" + offDays;
  49. }
  50. }
  1. public class HourEmployee extends Employee {
  2. private double moneyPerHour;
  3. private double hours;
  4. public HourEmployee() {
  5. super();
  6. }
  7. public HourEmployee(String name, int year, int month, int day, double moneyPerHour, double hours) {
  8. super(name, year, month, day);
  9. this.moneyPerHour = moneyPerHour;
  10. this.hours = hours;
  11. }
  12. public HourEmployee(String name, MyDate birthday, double moneyPerHour, double hours) {
  13. super(name, birthday);
  14. this.moneyPerHour = moneyPerHour;
  15. this.hours = hours;
  16. }
  17. public double getMoneyPerHour() {
  18. return moneyPerHour;
  19. }
  20. public void setMoneyPerHour(double moneyPerHour) {
  21. this.moneyPerHour = moneyPerHour;
  22. }
  23. public double getHours() {
  24. return hours;
  25. }
  26. public void setHours(double hours) {
  27. this.hours = hours;
  28. }
  29. /*
  30. * 重写方法,public double earning()返回实发工资,
  31. 实发工资 = 每小时多少钱 * 小时数
  32. */
  33. @Override
  34. public double earning() {
  35. return moneyPerHour * hours;
  36. }
  37. @Override
  38. public String getInfo() {
  39. return super.getInfo() + ",时薪:" + moneyPerHour + ",小时数:" + hours;
  40. }
  41. public void leave(){
  42. System.out.println("小时工,查看使用工具是否损坏,需要赔偿,然后拿钱走人");
  43. }
  44. }
  1. public class Manager extends SalaryEmployee {
  2. private double commisionPer;
  3. public Manager() {
  4. super();
  5. }
  6. public Manager(String name, int year, int month, int day, double salary, int workingDays, double offDays,
  7. double commisionPer) {
  8. super(name, year, month, day, salary, workingDays, offDays);
  9. this.commisionPer = commisionPer;
  10. }
  11. public Manager(String name, MyDate birthday, double salary, int workingDays, double offDays, double commisionPer) {
  12. super(name, birthday, salary, workingDays, offDays);
  13. this.commisionPer = commisionPer;
  14. }
  15. public double getCommisionPer() {
  16. return commisionPer;
  17. }
  18. public void setCommisionPer(double commisionPer) {
  19. this.commisionPer = commisionPer;
  20. }
  21. @Override
  22. public double earning() {
  23. return super.earning() * (1+commisionPer);
  24. }
  25. @Override
  26. public String getInfo() {
  27. return super.getInfo() + ",奖金比例:" + commisionPer;
  28. }
  29. }
  1. public class TestEmployee {
  2. public static void main(String[] args) {
  3. Employee[] all = new Employee[3];
  4. /*all[0] = new HourEmployee("张三", new MyDate(1990, 5, 1), 50, 50);
  5. all[1] = new SalaryEmployee("李四", new MyDate(1991, 1, 1), 10000, 22, 1);
  6. all[2] = new Manager("老王", new MyDate(1987, 12, 8), 20000, 22, 0, 0.3);*/
  7. all[0] = new HourEmployee("张三", 1990, 5, 1, 50, 50);
  8. all[1] = new SalaryEmployee("李四", 1991, 1, 1, 10000, 22, 1);
  9. all[2] = new Manager("老王", 1987, 12, 8, 20000, 22, 0, 0.3);
  10. //从键盘输入当前的月份
  11. Scanner input = new Scanner(System.in);
  12. System.out.print("请输入当前月份:");
  13. int month;
  14. while(true){
  15. month = input.nextInt();
  16. if(month>=1 && month<=12){
  17. break;
  18. }
  19. }
  20. input.close();
  21. for (int i = 0; i < all.length; i++) {
  22. System.out.println(all[i].getInfo());
  23. if(all[i] instanceof SalaryEmployee){
  24. if(month == all[i].getBirthday().getMonth()){
  25. System.out.println(all[i].getName() +"生日快乐,领取生日补助购物卡");
  26. }
  27. }else{
  28. HourEmployee he = (HourEmployee) all[i];
  29. he.leave();
  30. }
  31. }
  32. }
  33. }

6.7.8 多态引用时关于成员变量与成员方法引用的原则

1、成员变量:只看编译时类型

如果直接访问成员变量,那么只看编译时类型

  1. package com.atguigu.test05;
  2. /*
  3. * 成员变量没有重写,只看编译时类型
  4. */
  5. public class TestExtends {
  6. public static void main(String[] args) {
  7. Son s = new Son();
  8. System.out.println(s.a);//2,因为son的编译时类型是Son
  9. System.out.println(((Father)s).a);//1 ((Father)son)编译时类型,就是Father
  10. Father s2 = new Son();
  11. System.out.println(s2.a);//1 son2的编译时类型是Father
  12. System.out.println(((Son)s2).a);//2 ((Son)son2)编译时类型,就是Son
  13. }
  14. }
  15. class Father{
  16. int a = 1;
  17. }
  18. class Son extends Father{
  19. int a = 2;
  20. }

2、非虚方法:只看编译时类型

在Java中的非虚方法有三种:

1、由invokestatic指令调用的static方法,这种方法在编译时确定在运行时不会改变。

  1. javap -v .\Test.class

2、由invokespecial指令调用的方法,这些方法包括私有方法,实例构造方法和父类方法,这些方法也是在编译时已经确定,在运行时不会再改变的方法

3、由final关键字修饰的方法。虽然final方法是由invokevirtual指令进行调用的,但是final修饰的方法不能够进行在子类中进行覆盖,所以final修饰的方法是不能够在运行期进行动态改变的。在java语言规范中明确规定final方法就是非虚方法。

  1. package com.atguigu.test09;
  2. public class Test {
  3. public static void main(String[] args) {
  4. Father f = new Son();
  5. f.test();//只看编译时类型
  6. f.method();
  7. }
  8. }
  9. class Father{
  10. public static void test(){
  11. System.out.println("Father.test");
  12. }
  13. public void method(){
  14. System.out.println("Father.method");
  15. fun();//看运行时类型
  16. other();//看编译时类型
  17. }
  18. public void fun(){
  19. System.out.println("Father.fun");
  20. }
  21. private void other(){
  22. System.out.println("Father.other");
  23. }
  24. }
  25. class Son extends Father{
  26. public static void test(){
  27. System.out.println("son");
  28. }
  29. public void fun(){
  30. System.out.println("Son.fun");
  31. }
  32. private void other(){
  33. System.out.println("Son.other");
  34. }
  35. }

小贴士:

静态方法不能被重写

调用静态方法最好使用“类名.”

3、虚方法:静态分派与动态绑定

在Java中虚方法是指在编译阶段和类加载阶段都不能确定方法的调用入口地址,在运行阶段才能确定的方法,即可能被重写的方法。

当我们通过“对象.方法”的形式,调用一个虚方法,我们要如何确定它具体执行哪个方法呢?

(1)静态分派:先看这个对象的编译时类型,在这个对象的编译时类型中找到最匹配的方法

最匹配的是指,实参的编译时类型与形参的类型最匹配

(2)动态绑定:再看这个对象的运行时类型,如果这个对象的运行时类重写了刚刚找到的那个最匹配的方法,那么执行重写的,否则仍然执行刚才编译时类型中的那个方法

(1)示例一:没有重载有重写
  1. abstract class Animal {
  2. public abstract void eat();
  3. }
  4. class Cat extends Animal {
  5. public void eat() {
  6. System.out.println("吃鱼");
  7. }
  8. }
  9. class Dog extends Animal {
  10. public void eat() {
  11. System.out.println("吃骨头");
  12. }
  13. }
  14. public class Test{
  15. public static void main(String[] args){
  16. Animal a = new Cat();
  17. a.eat();
  18. }
  19. }

如上代码在编译期间先进行静态分派:此时a的编译时类型是Animal类,所以去Animal类中搜索eat()方法,如果Animal类或它的父类中没有这个方法,将会报错。

而在运行期间动态的在进行动态绑定:a的运行时类型是Cat类,而子类重写了eat()方法,所以执行的是Cat类的eat方法。如果没有重写,那么还是执行Animal类在的eat()方法

(2)示例二:有重载没有重写
  1. class MyClass{
  2. public void method(Father f) {
  3. System.out.println("father");
  4. }
  5. public void method(Son s) {
  6. System.out.println("son");
  7. }
  8. public void method(Daughter f) {
  9. System.out.println("daughter");
  10. }
  11. }
  12. class Father{
  13. }
  14. class Son extends Father{
  15. }
  16. class Daughter extends Father{
  17. }
  1. public class TestOverload {
  2. public static void main(String[] args) {
  3. Father f = new Father();
  4. Father s = new Son();
  5. Father d = new Daughter();
  6. MyClass my = new MyClass();
  7. my.method(f);//father
  8. my.method(s);//father
  9. my.method(d);//father
  10. }
  11. }

如上代码在编译期间先进行静态分派:因为my是MyClass类型,那么在MyClass类型中寻找最匹配的method方法。

而在运行期间动态的在进行动态绑定:即确定执行的是MyClass类中的method(Father f)方法,因为my对象的运行时类型还是MyClass类型。

有些同学会疑问,不是应该分别执行method(Father f)、method(Son s)、method(Daughter d)吗?

因为此时实参f,s,d编译时类型都是Father类型,因此method(Father f)是最合适的。

(3)示例三:有重载没有重写
  1. class MyClass{
  2. public void method(Father f) {
  3. System.out.println("father");
  4. }
  5. public void method(Son s) {
  6. System.out.println("son");
  7. }
  8. }
  9. class Father{
  10. }
  11. class Son extends Father{
  12. }
  13. class Daughter extends Father{
  14. }
  1. public class TestOverload {
  2. public static void main(String[] args) {
  3. MyClass my = new MyClass();
  4. Father f = new Father();
  5. Son s = new Son();
  6. Daughter d = new Daughter();
  7. my.method(f);//father
  8. my.method(s);//son
  9. my.method(d);//father
  10. }
  11. }

如上代码在编译期间先进行静态分派:因为my是MyClass类型,那么在MyClass类型中寻找最匹配的method方法。

而在运行期间动态的在进行动态绑定:即确定执行的是MyClass类中的method(Father f)方法,因为my对象的运行时类型还是MyClass类型。

有些同学会疑问,这次为什么分别执行method(Father f)、method(Son s)?

因为此时实参f,s,d编译时类型分别是Father、Son、Daughter,而Daughter只能与Father参数类型匹配

(4)示例四:有重载没有重写
  1. class MyClass{
  2. public void method(Father f) {
  3. System.out.println("father");
  4. }
  5. public void method(Son s) {
  6. System.out.println("son");
  7. }
  8. }
  9. class MySub extends MyClass{
  10. public void method(Daughter d) {
  11. System.out.println("daughter");
  12. }
  13. }
  14. class Father{
  15. }
  16. class Son extends Father{
  17. }
  18. class Daughter extends Father{
  19. }
  1. public class TestOverload {
  2. public static void main(String[] args) {
  3. MyClass my = new MySub();
  4. Father f = new Father();
  5. Son s = new Son();
  6. Daughter d = new Daughter();
  7. my.method(f);//father
  8. my.method(s);//son
  9. my.method(d);//father
  10. }
  11. }

如上代码在编译期间先进行静态分派:因为my是MyClass类型,那么在MyClass类型中寻找最匹配的method方法。

而在运行期间动态的在进行动态绑定:即确定执行的是MyClass类中的method(Father f)方法,因为my对象的运行时类型还是MyClass类型。

有些同学会疑问,my对象不是MySub类型吗,而MySub类型中有method(Daughter d)方法,那么my.method(d)语句应该执行MySub类型中的method(Daughter d)方法?

  • my变量在编译时类型是MyClass类型,那么在MyClass类中,只有method(Father f),method(Son s)方法,

  • f,s,d变量编译时类型分别是Father、Son、Daughter,而Daughter只能与Father参数类型匹配

  • 而在MySub类中并没有重写method(Father f)方法,所以仍然执行MyClass类中的method(Father f)方法

(5)示例五:有重载有重写
  1. class MyClass{
  2. public void method(Father f) {
  3. System.out.println("father");
  4. }
  5. public void method(Son s) {
  6. System.out.println("son");
  7. }
  8. }
  9. class MySub extends MyClass{
  10. public void method(Father d) {
  11. System.out.println("sub--");
  12. }
  13. public void method(Daughter d) {
  14. System.out.println("daughter");
  15. }
  16. }
  17. class Father{
  18. }
  19. class Son extends Father{
  20. }
  21. class Daughter extends Father{
  22. }
  1. public class TestOverloadOverride {
  2. public static void main(String[] args) {
  3. MyClass my = new MySub();
  4. Father f = new Father();
  5. Son s = new Son();
  6. Daughter d = new Daughter();
  7. my.method(f);//sub--
  8. my.method(s);//son
  9. my.method(d);//sub--
  10. }
  11. }

如上代码在编译期间先进行静态分派:因为my是MyClass类型,那么在MyClass类型中寻找最匹配的method方法。

而在运行期间动态的在进行动态绑定:即确定执行的是MyClass类中的method(Father f)方法,因为my对象的运行时类型还是MyClass类型。

有些同学会疑问,my对象不是MySub类型吗,而MySub类型中有method(Daughter d)方法,那么my.method(d)语句应该执行MySub类型中的method(Daughter d)方法?

  • my变量在编译时类型是MyClass类型,那么在MyClass类中,只有method(Father f),method(Son s)方法,

  • f,s,d变量编译时类型分别是Father、Son、Daughter,而Daughter只能与Father参数类型匹配

  • 而在MySub类中重写method(Father f)方法,所以执行MySub类中的method(Father f)方法

6.8 native关键字

native:本地的,原生的
用法:

  1. 只能修饰方法
  2. 表示这个方法的方法体代码不是用Java语言实现的,而是由C/C++语言编写的。
  3. 但是对于Java程序员来说,可以当做Java的方法一样去正常调用它,或者子类重写它。

JVM内存的管理:

尚硅谷__JavaSE_第6章 面向对象基础(中) - 图21

区域名称 作用
程序计数器 程序计数器是CPU中的寄存器,它包含每一个线程下一条要执行的指令的地址
本地方法栈 当程序中调用了native的本地方法时,本地方法执行期间的内存区域
方法区 存储已被虚拟机加载的类信息、常量、静态变量、即时编译器编译后的代码等数据。
堆内存 存储对象(包括数组对象),new来创建的,都存储在堆内存。
虚拟机栈 用于存储正在执行的每个Java方法的局部变量表等。局部变量表存放了编译期可知长度的各种基本数据类型、对象引用,方法执行完,自动释放。

修饰符一起使用问题?

外部类 成员变量 代码块 构造器 方法 局部变量
public × ×
protected × × ×
private × × ×
static × × ×
final × ×
abstract × × × ×
native × × × × ×

不能和abstract一起使用的修饰符?

(1)abstract和final不能一起修饰方法和类

(2)abstract和static不能一起修饰方法

(3)abstract和native不能一起修饰方法

(4)abstract和private不能一起修饰方法

static和final一起使用:

(1)修饰方法:可以,因为都不能被重写

(2)修饰成员变量:可以,表示静态常量

(3)修饰局部变量:不可以,static不能修饰局部变量

(4)修饰代码块:不可以,final不能修改代码块

(5)修饰内部类:可以一起修饰成员内部类,不能一起修饰局部内部类(后面讲)

6.9 final关键字

final:最终的,不可更改的,它的用法有:

1、修饰类

表示这个类不能被继承,没有子类

  1. final class Eunuch{//太监类
  2. }
  3. class Son extends Eunuch{//错误
  4. }

2、修饰方法

表示这个方法不能被子类重写

  1. class Father{
  2. public final void method(){
  3. System.out.println("father");
  4. }
  5. }
  6. class Son extends Father{
  7. public void method(){//错误
  8. System.out.println("son");
  9. }
  10. }

3、声明常量

final修饰某个变量(成员变量或局部变量),表示它的值就不能被修改,即常量,常量名建议使用大写字母。

如果某个成员变量用final修饰后,没有set方法,并且必须初始化(可以显式赋值、或在初始化块赋值、实例变量还可以在构造器中赋值)

  1. public class Test{
  2. public static void main(String[] args){
  3. final int MIN_SCORE = 0;
  4. final int MAX_SCORE = 100;
  5. }
  6. }
  7. class Chinese{
  8. public static final String COUNTRY = "中华人民共和国";
  9. private String name;
  10. public Chinese( String name) {
  11. super();
  12. this.name = name;
  13. }
  14. public Chinese() {
  15. super();
  16. }
  17. public String getName() {
  18. return name;
  19. }
  20. public void setName(String name) {
  21. this.name = name;
  22. }
  23. //final修饰的没有set方法
  24. public static String getCountry() {
  25. return COUNTRY;
  26. }
  27. }

6.10 Object根父类

6.10.1 如何理解根父类

java.lang.Object是类层次结构的根类,即所有类的父类。每个类都使用 Object 作为超类。

  • Object类型的变量与除Object以外的任意引用数据类型的对象都多态引用
  • 所有对象(包括数组)都实现这个类的方法。
  • 如果一个类没有特别指定父类,那么默认则继承自Object类。例如:
  1. public class MyClass /*extends Object*/ {
  2. // ...
  3. }

6.10.2 Object类的API

  1. **API(Application Programming Interface)**,应用程序编程接口。Java API是一本程序员的`字典` ,是JDK中提供给我们使用的类的说明文档。所以我们可以通过查询API的方式,来学习Java提供的类,并得知如何使用它们。在API文档中是无法得知这些类具体是如何实现的,如果要查看具体实现代码,那么我们需要查看**src源码**。
  2. 根据JDK源代码及Object类的API文档,Object类当中包含的方法有11个。今天我们主要学习其中的5个:

(1)toString()

public String toString()

①默认情况下,toString()返回的是“对象的运行时类型 @ 对象的hashCode值的十六进制形式”

②通常是建议重写,如果在eclipse中,可以用Alt +Shift + S—>Generate toString()

③如果我们直接System.out.println(对象),默认会自动调用这个对象的toString()

因为Java的引用数据类型的变量中存储的实际上时对象的内存地址,但是Java对程序员隐藏内存地址信息,所以不能直接将内存地址显示出来,所以当你打印对象时,JVM帮你调用了对象的toString()。

例如自定义的Person类:

  1. public class Person {
  2. private String name;
  3. private int age;
  4. @Override
  5. public String toString() {
  6. return "Person{" + "name='" + name + '\'' + ", age=" + age + '}';
  7. }
  8. // 省略构造器与Getter Setter
  9. }

(2)getClass()

public final Class<?> getClass():获取对象的运行时类型

因为Java有多态现象,所以一个引用数据类型的变量的编译时类型与运行时类型可能不一致,因此如果需要查看这个变量实际指向的对象的类型,需要用getClass()方法

  1. public static void main(String[] args) {
  2. Object obj = new String();
  3. System.out.println(obj.getClass());//运行时类型
  4. }

(3)finalize()

protected void finalize():用于最终清理内存的方法

  1. public class TestFinalize {
  2. public static void main(String[] args) {
  3. for (int i = 0; i < 10; i++) {
  4. MyData my = new MyData();
  5. }
  6. System.gc();//通知垃圾回收器来回收垃圾
  7. try {
  8. Thread.sleep(2000);//等待2秒再结束main,为了看效果
  9. } catch (InterruptedException e) {
  10. e.printStackTrace();
  11. }
  12. }
  13. }
  14. class MyData{
  15. @Override
  16. protected void finalize() throws Throwable {
  17. System.out.println("轻轻的我走了...");
  18. }
  19. }

面试题:对finalize()的理解?

  • 当对象被GC确定为要被回收的垃圾,在回收之前由GC帮你调用这个方法,不是由程序员手动调用。

  • 这个方法与C语言的析构函数不同,C语言的析构函数被调用,那么对象一定被销毁,内存被回收,而finalize方法的调用不一定会销毁当前对象,因为可能在finalize()中出现了让当前对象“复活”的代码

  • 每一个对象的finalize方法只会被调用一次。

  • 子类可以选择重写,一般用于彻底释放一些资源对象,而且这些资源对象往往时通过C/C++等代码申请的资源内存

(4)hashCode()

public int hashCode():返回每个对象的hash值。

hashCode 的常规协定:

  • ①如果两个对象的hash值是不同的,那么这两个对象一定不相等;
  • ②如果两个对象的hash值是相同的,那么这两个对象不一定相等。

主要用于后面当对象存储到哈希表等容器中时,为了提高存储和查询性能用的。

  1. public static void main(String[] args) {
  2. System.out.println("Aa".hashCode());//2112
  3. System.out.println("BB".hashCode());//2112
  4. }

(5)equals()

public boolean equals(Object obj):用于判断当前对象this与指定对象obj是否“相等”

①默认情况下,equals方法的实现等价于与“==”,比较的是对象的地址值

②我们可以选择重写,重写有些要求:

A:如果重写equals,那么一定要一起重写hashCode()方法,因为规定:

  1. a:如果两个对象调用equals返回true,那么要求这两个对象的hashCode值一定是相等的;
  2. b:如果两个对象的hashCode值不同的,那么要求这个两个对象调用equals方法一定是false
  3. c:如果两个对象的hashCode值相同的,那么这个两个对象调用equals可能是true,也可能是false

B:如果重写equals,那么一定要遵循如下几个原则:

  1. a:自反性:x.equals(x)返回true
  2. b:传递性:x.equals(y)为true, y.equals(z)为true,然后x.equals(z)也应该为true
  3. c:一致性:只要参与equals比较的属性值没有修改,那么无论何时调用结果应该一致
  4. d:对称性:x.equals(y)与y.equals(x)结果应该一样
  5. e:非空对象与nullequals一定是false
  1. class User{
  2. private String host;
  3. private String username;
  4. private String password;
  5. public User(String host, String username, String password) {
  6. super();
  7. this.host = host;
  8. this.username = username;
  9. this.password = password;
  10. }
  11. public User() {
  12. super();
  13. }
  14. public String getHost() {
  15. return host;
  16. }
  17. public void setHost(String host) {
  18. this.host = host;
  19. }
  20. public String getUsername() {
  21. return username;
  22. }
  23. public void setUsername(String username) {
  24. this.username = username;
  25. }
  26. public String getPassword() {
  27. return password;
  28. }
  29. public void setPassword(String password) {
  30. this.password = password;
  31. }
  32. @Override
  33. public String toString() {
  34. return "User [host=" + host + ", username=" + username + ", password=" + password + "]";
  35. }
  36. @Override
  37. public int hashCode() {
  38. final int prime = 31;
  39. int result = 1;
  40. result = prime * result + ((host == null) ? 0 : host.hashCode());
  41. result = prime * result + ((password == null) ? 0 : password.hashCode());
  42. result = prime * result + ((username == null) ? 0 : username.hashCode());
  43. return result;
  44. }
  45. @Override
  46. public boolean equals(Object obj) {
  47. if (this == obj)
  48. return true;
  49. if (obj == null)
  50. return false;
  51. if (getClass() != obj.getClass())
  52. return false;
  53. User other = (User) obj;
  54. if (host == null) {
  55. if (other.host != null)
  56. return false;
  57. } else if (!host.equals(other.host))
  58. return false;
  59. if (password == null) {
  60. if (other.password != null)
  61. return false;
  62. } else if (!password.equals(other.password))
  63. return false;
  64. if (username == null) {
  65. if (other.username != null)
  66. return false;
  67. } else if (!username.equals(other.username))
  68. return false;
  69. return true;
  70. }
  71. }