01、继承性的使用与理解

1、Person 类

  1. /*
  2. * 为描述和处理个人信息,定义类 Person
  3. */
  4. public class Person {
  5. String name;
  6. private int age;
  7. public Person(){
  8. }
  9. public Person(String name,int age){
  10. this.name = name;
  11. this.age = age;
  12. }
  13. public void eat(){
  14. System.out.println("吃饭");
  15. sleep();
  16. }
  17. private void sleep(){
  18. System.out.println("睡觉");
  19. }
  20. public int getAge() {
  21. return age;
  22. }
  23. public void setAge(int age) {
  24. this.age = age;
  25. }
  26. }

2、Student 类

  1. /*
  2. * 为描述和处理学生信息,定义类 Student
  3. */
  4. public class Student extends Person {
  5. // String name;
  6. // int age;
  7. String major;
  8. public Student(){
  9. }
  10. public Student(String name,int age,String major){
  11. this.name = name;
  12. // this.age = age;
  13. setAge(age);
  14. this.major = major;
  15. }
  16. // public void eat(){
  17. // System.out.println("吃饭");
  18. // }
  19. //
  20. // public void sleep(){
  21. // System.out.println("睡觉");
  22. // }
  23. public void study(){
  24. System.out.println("学习");
  25. }
  26. public void show(){
  27. System.out.println("name:" + name + ",age = " + getAge());
  28. }
  29. }

3、测试类

  1. /*
  2. * 面向对象的特征二:继承性
  3. *
  4. * 为什么要有继承?
  5. * 多个类中存在相同属性和行为时,将这些内容抽取到单独一个类中,
  6. * 那么多个类无需再定义这些属性和行为,只要继承那个类即可。
  7. * * 一、继承性的好处
  8. * ① 减少了代码的冗余,提高了代码的复用性;
  9. * ② 便于功能的扩展;
  10. * ③ 为之后多态性的使用,提供了前提。
  11. *
  12. * 二、继承性的格式
  13. * class A extends B{}
  14. * A:子类、派生类、subclass
  15. * B:父类、超类、基类、superclass
  16. *
  17. * 2.1 体现:一旦子类 A 继承父类以后,子类 A 中就获取了父类 B 中声明的结构:属性、方法
  18. * 特别的,父类中声明为 private 的属性或方法,子类继承父类以后,仍然认为获取了父类中私有的结构。
  19. * 只有因为封装性的影响,使得子类不能直接调用父类的结构而已。
  20. * 2.2 子类继承父类以后,还可以声明自己特有的属性或方法,实现功能的拓展。
  21. * 子类和父类的关系:不同于子集与集合的关系。
  22. * extends:延展、扩展
  23. *
  24. */
  25. public class ExtendsTest {
  26. public static void main(String[] args) {
  27. Person p1 = new Person();
  28. // p1.age = 1;
  29. p1.eat();
  30. System.out.println("********************");
  31. Student s1 = new Student();
  32. s1.eat();
  33. // s1.sleep();
  34. s1.name = "Tom";
  35. s1.setAge(10);
  36. System.out.println(s1.getAge());
  37. }
  38. }

image.png

3、Java 中关于继承性的规定

  1. /* 三、Java 中关于继承性的规定:
  2. * 1.一个类可以被多个类继承
  3. * 2.Java 中类的单继承性:一个类只能有一个父类
  4. * 3.子父类是相对的概念。
  5. * 4.子类直接继承的父类,称为:直接父类。间接继承的父类,称为,间接父类。
  6. * 5.子类继承父类后,就获取了直接父类以及所有间接父类中声明的属性和方法。
  7. *
  8. * 四、1.如果我们没有显式的声明一个类的父类的话,则此类继承于 java.lang.Object 类
  9. * 2.所有的 java 类(除 java.long.Object 类之外)都直接或间接地继承于 java.lang.Object 类;
  10. * 3.意味着,所有的 java 类具有 java.lang.Object 类声明的功能。
  11. */
  12. public class ExtendsTest {
  13. public static void main(String[] args) {
  14. s1.brease();
  15. Creature c = new Creature();
  16. System.out.println(c.toString());
  17. }
  18. }

4、将上述 Person 类改为如下

  1. public class Person extends Creature {
  2. ...
  3. }

5、Creature 类

  1. public class Creature {
  2. public void brease(){
  3. System.out.println("呼吸");
  4. }
  5. }

image.png

1.1、继承性练习

1、练习1
image.png

  1. /*
  2. * 定义类Kids继承ManKind,并包括
  3. * 成员变量int yearsOld;
  4. * 方法printAge()打印yearsOld的值
  5. *
  6. */
  7. public class Kids extends ManKind{
  8. private int yearsOld; //年限
  9. public Kids() {
  10. }
  11. public Kids(int yearsOld) {
  12. this.yearsOld = yearsOld;
  13. }
  14. public int getYearsOld() {
  15. return yearsOld;
  16. }
  17. public void setYearsOld(int yearsOld) {
  18. this.yearsOld = yearsOld;
  19. }
  20. public void printAge(){
  21. System.out.println("I am " + yearsOld);
  22. }
  23. }

ManKind类

  1. /*
  2. * 定义一个ManKind类,包括
  3. * 成员变量int sex和int salary;
  4. * 方法void manOrWoman():根据sex的值显示“man”(sex==1)或者“woman”(sex==0);
  5. * 方法void employeed():根据salary的值显示“no job”(salary==0)或者“job”(salary!=0)。
  6. *
  7. */
  8. public class ManKind {
  9. private int sex; //性别
  10. private int salary; //薪资
  11. public ManKind() {
  12. }
  13. public ManKind(int sex, int salary) {
  14. this.sex = sex;
  15. this.salary = salary;
  16. }
  17. public void manOrWoman(){
  18. if(sex==1){
  19. System.out.println("man");
  20. }else if(sex==0){
  21. System.out.println("woman");
  22. }
  23. }
  24. public void employeed(){
  25. if(salary==0){
  26. System.out.println("no job");
  27. }else if(salary!=0){
  28. System.out.println("job");
  29. }
  30. }
  31. public int getSex() {
  32. return sex;
  33. }
  34. public void setSex(int sex) {
  35. this.sex = sex;
  36. }
  37. public int getSalary() {
  38. return salary;
  39. }
  40. public void setSalary(int salary) {
  41. this.salary = salary;
  42. }
  43. }

KidsTest

  1. /*
  2. * 定义类KidsTest,在类的main方法中实例化Kids的对象someKid,
  3. * 用该对象访问其父类的成员变量及方法。
  4. *
  5. */
  6. public class KidsTest {
  7. public static void main(String[] args) {
  8. Kids someKid = new Kids(12);
  9. someKid.printAge();
  10. someKid.setYearsOld(15);
  11. someKid.setSalary(0);
  12. someKid.setSex(1);
  13. someKid.employeed();
  14. someKid.manOrWoman();
  15. }
  16. }

2、练习2
image.png

  1. public class Circle {
  2. public double radius; //半径
  3. public Circle(){
  4. radius = 1.0;
  5. }
  6. public double getRadius() {
  7. return radius;
  8. }
  9. public void setRadius(double radius) {
  10. this.radius = radius;
  11. }
  12. public double findArea(){ //计算圆的面积
  13. return Math.PI * radius * radius;
  14. }
  15. }

Cylinder类

  1. public class Cylinder extends Circle{
  2. private double length;
  3. public Cylinder(){
  4. length = 1.0;
  5. }
  6. public double getLength() {
  7. return length;
  8. }
  9. public void setLength(double length) {
  10. this.length = length;
  11. }
  12. public double findVolume(){ //计算圆柱体积
  13. return findArea() * length;
  14. }
  15. }

测试类

  1. public class CylinderTest {
  2. public static void main(String[] args) {
  3. Cylinder cy = new Cylinder();
  4. cy.setRadius(2.1);
  5. cy.setLength(3.4);
  6. double volues = cy.findVolume();
  7. System.out.println("圆柱的体积:" + volues);
  8. double area = cy.findArea();
  9. System.out.println("圆的面积: " + area);
  10. }
  11. }

02、方法的重写(override/overwrite)

1、Person类

  1. public class Person {
  2. String name;
  3. int age;
  4. public Person(){
  5. }
  6. public Person(String name,int age){
  7. this.name = name;
  8. this.age = age;
  9. }
  10. public void eat(){
  11. System.out.println("吃饭");
  12. }
  13. public void walk(int distance){
  14. System.out.println("走路,走的距离是:" + distance + "公里");
  15. show();
  16. }
  17. private void show(){
  18. System.out.println("我是一个人。");
  19. }
  20. public Object info(){
  21. return null;
  22. }
  23. public double info1(){
  24. return 1.0;
  25. }
  26. }

2、Student类

  1. public class Student extends Person{
  2. String major;
  3. public Student(){
  4. }
  5. public Student(String major){
  6. this.major = major;
  7. }
  8. public void study(){
  9. System.out.println("学习,专业是:" + major);
  10. }
  11. //对父类中的eat()进行了重写
  12. public void eat(){
  13. System.out.println("学生应该多吃有营养的。");
  14. }
  15. public void show(){
  16. System.out.println("我是一个学生。");
  17. }
  18. public String info(){
  19. return null;
  20. }
  21. //不是一个类型,所以报错。
  22. // public int info1(){
  23. // return 1;
  24. // }
  25. //可以直接将父类的方法的第一行粘过来,直接写方法体
  26. // public void walk(int distance){
  27. // System.out.println("重写的方法");
  28. // }
  29. //直接输入父类的方法名,Alt + /,选择即可生成
  30. @Override
  31. public void walk(int distance) {
  32. System.out.println("自动生成");
  33. }
  34. }

3、测试类

  1. /*
  2. * 方法的重写(override/overwrite)
  3. *
  4. * 1.重写:子类继承父类以后,可以对父类中的方法进行覆盖操作。
  5. * 2.应用:重写以后,当创建子类对象以后,通过子类对象去调用子父类中同名同参数方法时,执行的是子类重写父类的方法。
  6. * 即在程序执行时,子类的方法将覆盖父类的方法。
  7. *
  8. * 面试题:区分方法的重载与重写(有的书也叫做“覆盖”)
  9. * 答:方法的重写Overriding和重载Overloading是Java多态性的不同表现。
  10. * 重写Overriding是父类与子类之间多态性的一种表现,重载Overloading是一个类中多态性的一种表现。
  11. * 如果在子类中定义某方法与其父类有相同的名称和参数,我们说该方法被重写 (Overriding)。
  12. * 子类的对象使用这个方法时,将调用子类中的定义,对它而言,父类中的定义如同被"屏蔽"了。
  13. * 如果在一个类中定义了多个同名的方法,它们或有不同的参数个数或有不同的参数类型,则称为方法的重载(Overloading)。
  14. *
  15. */
  16. public class PersonTest {
  17. public static void main(String[] args) {
  18. Student s = new Student("计算机科学与技术");
  19. s.eat();
  20. s.walk(10);
  21. s.study();
  22. }
  23. }

2.1、方法重写的细节

1、Person类

  1. public class Person {
  2. String name;
  3. int age;
  4. public Person(){
  5. }
  6. public Person(String name,int age){
  7. this.name = name;
  8. this.age = age;
  9. }
  10. // public void eat(){
  11. // System.out.println("吃饭");
  12. // }
  13. static void eat(){
  14. System.out.println("吃饭");
  15. }
  16. public void walk(int distance){
  17. System.out.println("走路,走的距离是:" + distance + "公里");
  18. show();
  19. }
  20. private void show(){
  21. System.out.println("我是一个人。");
  22. }
  23. public Object info(){
  24. return null;
  25. }
  26. public double info1(){
  27. return 1.0;
  28. }
  29. }

2、Student类

  1. public class Student extends Person{
  2. String major;
  3. public Student(){
  4. }
  5. public Student(String major){
  6. this.major = major;
  7. }
  8. public void study(){
  9. System.out.println("学习,专业是:" + major);
  10. }
  11. //对父类中的eat()进行了重写
  12. // public void eat(){
  13. // System.out.println("学生应该多吃有营养的。");
  14. // }
  15. //这样不会报错,但已经不是重写了!!
  16. public static void eat(){
  17. System.out.println("学生应该多吃有营养的。");
  18. }
  19. public void show(){
  20. System.out.println("我是一个学生。");
  21. }
  22. public String info(){
  23. return null;
  24. }
  25. //不是一个类型,所以报错。
  26. // public int info1(){
  27. // return 1;
  28. // }
  29. //可以直接将父类的方法的第一行粘过来,直接写方法体
  30. // public void walk(int distance){
  31. // System.out.println("重写的方法");
  32. // }
  33. //直接输入父类的方法名,Alt + /,选择即可生成
  34. @Override
  35. public void walk(int distance) {
  36. System.out.println("自动生成");
  37. }
  38. }

3、测试类

  1. /*
  2. * 3.重写的规定:
  3. * 方法的声明:权限修饰符 返回值类型 方法名(形参列表){
  4. * //方法体
  5. * }
  6. * 约定俗称:子类中的叫重写的方法,父类中的叫被重写的方法。
  7. * ① 子类重写的方法的方法名和形参列表必须和父类被重写的方法的方法名、形参列表相同;
  8. * ② 子类重写的方法使用的访问权限不能小于父类被重写的方法的访问权限,
  9. * 特殊情况: 子类不能重写父类中声明为private权限的方法;
  10. * ③ 返回值类型:
  11. * > 父类被重写的方法的返回值类型是void,则子类重写的方法的返回值类型只能是void;
  12. * > 父类被重写的方法的返回值类型是A类型,则子类重写的方法的返回值类型可以是A类或A类的子类;
  13. * > 父类被重写的方法的返回值类型如果是基本数据类型(比如:double),则子类重写的方法的返回值类型必须是相同的基本数据类型(必须是:double)。
  14. *
  15. * ④ 子类方法抛出的异常不能大于父类被重写的方法抛出的异常;
  16. *
  17. * 注意:子类与父类中同名同参数的方法必须同时声明为非static的(即为重写),或者同时声明为static的(不是重写)。
  18. * 因为static方法是属于类的,子类无法覆盖父类的方法。
  19. */
  20. public class PersonTest {
  21. public static void main(String[] args) {
  22. Student s = new Student("计算机科学与技术");
  23. s.eat();
  24. s.walk(10);
  25. System.out.println("*******************");
  26. s.study();
  27. Person p1 = new Person();
  28. p1.eat();
  29. }
  30. }

2.2、方法的练习

1、练习1

  1. 1.如果现在父类的一个方法定义成private访问权限,在子类中将此方法声明为default访问权限,那么这样还叫重写吗?(NO)
  2. 1

2、练习2

  1. /*
  2. * 2.修改练习1.2中定义的类Kids,在Kids中重新定义employeed()方法,
  3. * 覆盖父类ManKind中定义的employeed()方法,
  4. * 输出“Kids should study and no job.”
  5. */
  6. public class Kids extends ManKind{
  7. private int yearsOld; //年限
  8. public Kids() {
  9. }
  10. public Kids(int yearsOld) {
  11. this.yearsOld = yearsOld;
  12. }
  13. public int getYearsOld() {
  14. return yearsOld;
  15. }
  16. public void setYearsOld(int yearsOld) {
  17. this.yearsOld = yearsOld;
  18. }
  19. public void printAge(){
  20. System.out.println("I am " + yearsOld);
  21. }
  22. public void employeed(){
  23. System.out.println("Kids should study and no job.");
  24. }
  25. }

MindKids类

  1. public class ManKind {
  2. private int sex; //性别
  3. private int salary; //薪资
  4. public ManKind() {
  5. }
  6. public ManKind(int sex, int salary) {
  7. this.sex = sex;
  8. this.salary = salary;
  9. }
  10. public void manOrWoman(){
  11. if(sex==1){
  12. System.out.println("man");
  13. }else if(sex==0){
  14. System.out.println("woman");
  15. }
  16. }
  17. public void employeed(){
  18. if(salary==0){
  19. System.out.println("no job");
  20. }else if(salary!=0){
  21. System.out.println("job");
  22. }
  23. }
  24. public int getSex() {
  25. return sex;
  26. }
  27. public void setSex(int sex) {
  28. this.sex = sex;
  29. }
  30. public int getSalary() {
  31. return salary;
  32. }
  33. public void setSalary(int salary) {
  34. this.salary = salary;
  35. }
  36. }

测试类

  1. public class KidsTest {
  2. public static void main(String[] args) {
  3. Kids someKid = new Kids(12);
  4. someKid.printAge();
  5. someKid.setYearsOld(15);
  6. someKid.setSalary(0);
  7. someKid.setSex(1);
  8. someKid.employeed();
  9. someKid.manOrWoman();
  10. }
  11. }

03、四种访问权限修饰符

四种权限修饰符
image.png
Order类

  1. package githubb;
  2. /*
  3. * 体会四种不同的权限修饰符
  4. */
  5. public class Order {
  6. private int orderPrivate;
  7. int orderDefault;
  8. protected int orderProtected;
  9. public int orderPublic;
  10. private void methodPrivate(){
  11. orderPrivate = 1;
  12. orderDefault = 2;
  13. orderProtected = 3;
  14. orderPublic = 4;
  15. }
  16. void methodDefault(){
  17. orderPrivate = 1;
  18. orderDefault = 2;
  19. orderProtected = 3;
  20. orderPublic = 4;
  21. }
  22. protected void methodProtected(){
  23. orderPrivate = 1;
  24. orderDefault = 2;
  25. orderProtected = 3;
  26. orderPublic = 4;
  27. }
  28. public void methodPublic(){
  29. orderPrivate = 1;
  30. orderDefault = 2;
  31. orderProtected = 3;
  32. orderPublic = 4;
  33. }
  34. }

Ordertest类

  1. package githubb;
  2. public class OrderTest {
  3. public static void main(String[] args) {
  4. Order order = new Order();
  5. order.orderDefault = 1;
  6. order.orderProtected = 2;
  7. order.orderPublic = 3;
  8. order.methodDefault();
  9. order.methodProtected();
  10. order.methodPublic();
  11. //同一个包中的其它类,不可以调用Order类中私有的属性
  12. // order.orderPrivate = 4; //The field Order.orderPrivate is not visible
  13. // order.methoPrivate();
  14. }
  15. }

SubOrder类

  1. package githubc;
  2. import githubb.Order;
  3. public class SubOrder extends Order{
  4. public void method(){
  5. orderProtected = 1;
  6. orderPublic = 2;
  7. methodProtected();
  8. methodPublic();
  9. //在不同包的子类中,不能调用Order类中声明为private和缺省的权限的属性、方法
  10. // orderDefault = 3;
  11. // orderPrivate = 4;
  12. //
  13. // methodDefault();
  14. // methodPrivate();
  15. }
  16. }

OrderTest类

  1. package githubc;
  2. import githubb.Order;
  3. public class OrderTest {
  4. public static void main(String[] args) {
  5. Order order = new Order();
  6. order.orderPublic = 1;
  7. order.methodPublic();
  8. //不同包下的普通类(非子类)要使用Order类,不可以调用声明为private、缺省、protected权限的属性、方法。
  9. // order.orderPrivate = 2;
  10. // order.orderProtected = 3;
  11. // order.orderProtected = 4;
  12. //
  13. // order.methodPrivate();
  14. // order.methodDefault();
  15. // order.methodProtected();
  16. }
  17. public void show(Order order){
  18. order.orderPublic = 1;
  19. order.methodPublic();
  20. //不同包下的普通类(非子类)要使用Order类,不可以调用声明为private、缺省、protected权限的属性、方法。
  21. // order.orderPrivate = 2;
  22. // order.orderProtected = 3;
  23. // order.orderProtected = 4;
  24. //
  25. // order.methodPrivate();
  26. // order.methodDefault();
  27. // order.methodProtected();
  28. }
  29. }

04、关键字:super

Person类

  1. public class Person {
  2. String name;
  3. int age;
  4. int id = 1003; //身份证号
  5. public Person(){
  6. System.out.println("我无处不在");
  7. }
  8. public Person(String name){
  9. this.name = name;
  10. }
  11. public Person(String name,int age){
  12. this(name);
  13. this.age = age;
  14. }
  15. public void eat(){
  16. System.out.println("人,吃饭");
  17. }
  18. public void walk(){
  19. System.out.println("人,走路");
  20. }
  21. }

Student类

  1. public class Student extends Person{
  2. String major;
  3. int id = 1002; //学号
  4. public Student(){
  5. }
  6. public Student(String name,int age,String major){
  7. // this.age = age;
  8. // this.name = name;
  9. super(name,age);
  10. this.major = major;
  11. }
  12. public Student(String major){
  13. this.major = major;
  14. }
  15. public void eat(){
  16. System.out.println("学生多吃有营养的食物");
  17. }
  18. public void Study(){
  19. System.out.println("学生,学习知识。");
  20. this.eat();
  21. //如果,想调用父类中被重写的,不想调用子类中的方法,可以:
  22. super.eat();
  23. super.walk();//子父类中未重写的方法,用"this."或"super."调用都可以
  24. }
  25. public void show(){
  26. System.out.println("name = " + this.name + ",age = " + super.age);
  27. System.out.println("id = " + this.id);
  28. System.out.println("id = " + super.id);
  29. }
  30. }

测试类

  1. /*
  2. * super关键字的使用
  3. * 1.super理解为:父类的
  4. * 2.super可以用来调用:属性、方法、构造器
  5. *
  6. * 3.super的使用
  7. * 3.1 我们可以在子类的方法或构造器中,通过"super.属性"或"super.方法"的方式,显式的调用
  8. * 父类中声明的属性或方法。但是,通常情况下,我们习惯去省略这个"super."
  9. * 3.2 特殊情况:当子类和父类中定义了同名的属性时,我们要想在子类中调用父类中声明的属性,则必须显式的
  10. * 使用"super.属性"的方式,表明调用的是父类中声明的属性。
  11. * 3.3 特殊情况:当子类重写了父类中的方法后,我们想在子类的方法中调用父类中被重写的方法时,必须显式的
  12. * 使用"super.方法"的方式,表明调用的是父类中被重写的方法。
  13. *
  14. * 4.super调用构造器
  15. * 4.1 我们可以在子类的构造器中显式的使用"super(形参列表)"的方式,调用父类中声明的指定的构造器
  16. * 4.2 "super(形参列表)"的使用,必须声明在子类构造器的首行!
  17. * 4.3 我们在类的构造器中,针对于"this(形参列表)"或"super(形参列表)"只能二选一,不能同时出现。
  18. * 4.4 在构造器的首行,既没有显式的声明"this(形参列表)"或"super(形参列表)",则默认的调用的是父类中的空参构造器。super()
  19. * 4.5 在类的多个构造器中,至少有一个类的构造器使用了"super(形参列表)",调用父类中的构造器。
  20. *
  21. */
  22. public class SuperTest {
  23. public static void main(String[] args) {
  24. Student s = new Student();
  25. s.show();
  26. s.Study();
  27. Student s1 = new Student("Ton",21,"IT" );
  28. s1.show();
  29. System.out.println("***********************");
  30. Student s2 = new Student();
  31. }
  32. }

05、子类对象实例化过程

image.png
image.png

  1. /*
  2. * 子类对象实例化的全过程
  3. *
  4. * 1.从结果上看:
  5. * 子类继承父类以后,就获取了父类中声明的属性或方法。
  6. * 创建子类的对象中,在堆空间中,就会加载所有父类中声明的属性。
  7. *
  8. * 2.从过程上看:
  9. * 当我们通过子类的构造器创建子类对象时,我们一定会直接或间接的调用其父类构造器,
  10. * 直到调用了java.lang.Object类中空参的构造器为止。正因为加载过所有的父类结构,所以才可以看到内存中有
  11. * 父类中的结构,子类对象可以考虑进行调用。
  12. *
  13. * 明确:虽然创建子类对象时,调用了父类的构造器,但自始至终就创建过一个对象,即为new的子类对象。
  14. */
  15. public class InstanceTest {
  16. }

练习
Account类

  1. /*
  2. * 写一个名为Account的类模拟账户。该类的属性和方法如下图所示。
  3. * 该类包括的属性:账号id,余额balance,年利率annualInterestRate;
  4. * 包含的方法:访问器方法(getter和setter方法),
  5. * 返回月利率的方法getMonthlyInterest(),
  6. * 取款方法withdraw(),存款方法deposit()。
  7. *
  8. */
  9. public class Account {
  10. private int id; //账号
  11. private double balance; //余额
  12. private double annualInterestRate; //年利率
  13. public Account(int id, double balance, double annualInterestRate) {
  14. super();
  15. this.id = id;
  16. this.balance = balance;
  17. this.annualInterestRate = annualInterestRate;
  18. }
  19. public int getId() {
  20. return id;
  21. }
  22. public void setId(int id) {
  23. this.id = id;
  24. }
  25. public double getBalance() {
  26. return balance;
  27. }
  28. public void setBalance(double balance) {
  29. this.balance = balance;
  30. }
  31. public double getAnnualInterestRate() {
  32. return annualInterestRate;
  33. }
  34. public void setAnnualInterestRate(double annualInterestRate) {
  35. this.annualInterestRate = annualInterestRate;
  36. }
  37. public double getMonthlyInterest(){ //返回月利率的方法
  38. return annualInterestRate / 12;
  39. }
  40. public void withdraw (double amount){ //取款方法
  41. if(balance >= amount){
  42. balance -= amount;
  43. return;
  44. }
  45. System.out.println("余额不足");
  46. }
  47. public void deposit (double amount){ //存款方法
  48. if(amount > 0){
  49. balance += amount;
  50. }
  51. }
  52. }

AccountTest类

  1. /*
  2. * 写一个用户程序测试Account类。在用户程序中,
  3. * 创建一个账号为1122、余额为20000、年利率4.5%的Account对象。
  4. * 使用withdraw方法提款30000元,并打印余额。再使用withdraw方法提款2500元,
  5. * 使用deposit方法存款3000元,然后打印余额和月利率。
  6. */
  7. public class AccountTest {
  8. public static void main(String[] args) {
  9. Account acct = new Account(1122,20000,0.045);
  10. acct.withdraw(30000);
  11. System.out.println("你的账户余额为:" + acct.getBalance());
  12. acct.withdraw(2500);
  13. System.out.println("你的账户余额为:" + acct.getBalance());
  14. acct.deposit(3000);
  15. System.out.println("你的账户余额为:" + acct.getBalance());
  16. System.out.println("月利率为: " + (acct.getAnnualInterestRate() * 100) + "%");
  17. }
  18. }

CheckAccount类

  1. /*
  2. * 创建Account类的一个子类CheckAccount代表可透支的账户,该账户中定义一个属性overdraft代表可透支限额。
  3. * 在CheckAccount类中重写withdraw方法,其算法如下:
  4. * 如果(取款金额<账户余额),
  5. * 可直接取款
  6. * 如果(取款金额>账户余额),
  7. * 计算需要透支的额度
  8. * 判断可透支额overdraft是否足够支付本次透支需要,如果可以
  9. * 将账户余额修改为0,冲减可透支金额
  10. * 如果不可以
  11. * 提示用户超过可透支额的限额
  12. *
  13. */
  14. public class CheckAccount extends Account{
  15. private double overdraft; //代表可透支限额
  16. public CheckAccount(int id, double balance, double annualInterestRate,double overdraft){
  17. super(id, balance, annualInterestRate);
  18. this.overdraft = overdraft;
  19. }
  20. public double getOverdraft() {
  21. return overdraft;
  22. }
  23. public void setOverdraft(double overdraft) {
  24. this.overdraft = overdraft;
  25. }
  26. @Override
  27. public void withdraw(double amount) {
  28. if(getBalance() >= amount){ //余额足够消费
  29. //方式一
  30. // setBalance(getBalance() - amount);
  31. //方式二
  32. super.withdraw(amount);
  33. }else if(overdraft >= amount - getBalance()){ //余额不够
  34. overdraft -= (amount - getBalance());
  35. // setBalance(0);
  36. //或
  37. super.withdraw(getBalance());
  38. }else{ //超过可透支限额
  39. System.out.println("超过可透支限额!");
  40. }
  41. }
  42. }

CheckAccountTest类

  1. /*
  2. * 写一个用户程序测试CheckAccount类。在用户程序中,
  3. * 创建一个账号为1122、余额为20000、年利率4.5%,
  4. * 可透支限额为5000元的CheckAccount对象。
  5. * 使用withdraw方法提款5000元,并打印账户余额和可透支额。
  6. * 再使用withdraw方法提款18000元,并打印账户余额和可透支额。
  7. * 再使用withdraw方法提款3000元,并打印账户余额和可透支额。
  8. *
  9. */
  10. public class CheckAccountTest {
  11. public static void main(String[] args) {
  12. CheckAccount cat = new CheckAccount(1122,20000,0.045,5000);
  13. cat.withdraw(5000);
  14. System.out.println("您的账户余额为: " + cat.getBalance());
  15. System.out.println("您的可透支额度为: " + cat.getOverdraft());
  16. cat.withdraw(18000);
  17. System.out.println("您的账户余额为: " + cat.getBalance());
  18. System.out.println("您的可透支额度为: " + cat.getOverdraft());
  19. cat.withdraw(3000);
  20. System.out.println("您的账户余额为: " + cat.getBalance());
  21. System.out.println("您的可透支额度为: " + cat.getOverdraft());
  22. }
  23. }

06、面向对象特征之三:多态性

Person类

  1. public class Person {
  2. String name;
  3. int age;
  4. public void eat(){
  5. System.out.println("人,吃饭");
  6. }
  7. public void walk(){
  8. System.out.println("人,走路");
  9. }
  10. }

Woman类

  1. public class Woman extends Person{
  2. boolean isBeauty;
  3. public void goShopping(){
  4. System.out.println("女人喜欢购物");
  5. }
  6. public void eat(){
  7. System.out.println("女人少吃,为了减肥。");
  8. }
  9. public void walk(){
  10. System.out.println("女人,窈窕的走路。");
  11. }
  12. }

Man类

  1. public class Man extends Person{
  2. boolean isSmoking;
  3. public void earnMoney(){
  4. System.out.println("男人负责工作养家");
  5. }
  6. public void eat() {
  7. System.out.println("男人多吃肉,长肌肉");
  8. }
  9. public void walk() {
  10. System.out.println("男人霸气的走路");
  11. }
  12. }

测试类

  1. /*
  2. * 面向对象之三:多态性
  3. *
  4. * 1.理解多态性:可以理解为一个事物的多种态性。
  5. * 2.何为多态性:
  6. * 对象的多态性:父类的引用指向子类的对象(或子类的对象赋值给父类的引用)
  7. *
  8. * 3.多态的使用:虚拟方法调用
  9. * 有了对象多态性以后,我们在编译期,只能调用父类声明的方法,但在执行期实际执行的是子类重写父类的方法
  10. * 简称:编译时,看左边;运行时,看右边。
  11. *
  12. * 若编译时类型和运行时类型不一致,就出现了对象的多态性(Polymorphism)
  13. * 多态情况下,
  14. * “看左边”:看的是父类的引用(父类中不具备子类特有的方法)
  15. * “看右边”:看的是子类的对象(实际运行的是子类重写父类的方法)
  16. *
  17. * 4.多态性的使用前提:
  18. * ① 类的继承关系
  19. * ② 方法的重写
  20. * 5.对象的多态性:只适用于方法,不适用于属性(编译和运行都看左边)
  21. */
  22. public class PersonTest {
  23. public static void main(String[] args) {
  24. Person p1 = new Person();
  25. p1.eat();
  26. Man man = new Man();
  27. man.eat();
  28. man.age = 25;
  29. man.earnMoney();
  30. //************************************
  31. //对象的多态性,父类的引用指向子类的对象
  32. Person p2 = new Man();
  33. // Person p3 = new Woman();
  34. //多态的使用:当调用子父类同名同参数方法时,实际调用的是子类重写父类的方法---虚拟方法调用
  35. p2.eat();
  36. p2.walk();
  37. // p2.earnMoney();
  38. }
  39. }

举例

  1. /*
  2. * 多态性应用举例
  3. */
  4. public class AnimalTest {
  5. public static void main(String[] args) {
  6. AnimalTest test = new AnimalTest();
  7. test.func(new Dog());
  8. test.func(new Cat());
  9. }
  10. public void func(Animal animal){ //Animal animal = new Dog();
  11. animal.eat();
  12. animal.shout();
  13. }
  14. //如果没有多态性,就会写很多如下的方法,去调用
  15. public void func(Dog dog){
  16. dog.eat();
  17. dog.shout();
  18. }
  19. public void func(Cat cat){
  20. cat.eat();
  21. cat.shout();
  22. }
  23. }
  24. class Animal{
  25. public void eat(){
  26. System.out.println("动物,进食");
  27. }
  28. public void shout(){
  29. System.out.println("动物:叫");
  30. }
  31. }
  32. class Dog extends Animal{
  33. public void eat(){
  34. System.out.println("狗吃骨头");
  35. }
  36. public void shout() {
  37. System.out.println("汪!汪!汪!");
  38. }
  39. }
  40. class Cat extends Animal{
  41. public void eat(){
  42. System.out.println("猫吃鱼");
  43. }
  44. public void shout() {
  45. System.out.println("喵!喵!喵!");
  46. }
  47. }

6.1、虚拟方法的补充

  1. import java.util.Random;
  2. /*
  3. * 2.从编译和运行的角度看:
  4. * 重载,是指允许存在多个同名方法,而这些方法的参数不同。
  5. * 编译器根据方法不同的参数表,对同名方法的名称做修饰。
  6. * 对于编译器而言,这些同名方法就成了不同的方法。
  7. * 它们的调用地址在编译期就绑定了。Java的重载是可以包括父类和子类的,
  8. * 即子类可以重载父类的同名不同参数的方法。所以:对于重载而言,在方法调用之前,
  9. * 编译器就已经确定了所要调用的方法,这称为“早绑定”或“静态绑定”;
  10. * 而对于多态,只有等到方法调用的那一刻,解释运行器才会确定所要调用的具体方法,
  11. * 这称为“晚绑定”或“动态绑定”。
  12. *
  13. * 引用一句Bruce Eckel的话:“不要犯傻,如果它不是晚绑定,它就不是多态。”
  14. */
  15. //面试题:多态是编译时行为还是运行时行为?
  16. //证明如下:
  17. class Animal {
  18. protected void eat() {
  19. System.out.println("animal eat food");
  20. }
  21. }
  22. class Cat extends Animal {
  23. protected void eat() {
  24. System.out.println("cat eat fish");
  25. }
  26. }
  27. class Dog extends Animal {
  28. public void eat() {
  29. System.out.println("Dog eat bone");
  30. }
  31. }
  32. class Sheep extends Animal {
  33. public void eat() {
  34. System.out.println("Sheep eat grass");
  35. }
  36. }
  37. public class InterviewTest {
  38. public static Animal getInstance(int key) {
  39. switch (key) {
  40. case 0:
  41. return new Cat ();
  42. case 1:
  43. return new Dog ();
  44. default:
  45. return new Sheep ();
  46. }
  47. }
  48. public static void main(String[] args) {
  49. int key = new Random().nextInt(3);
  50. System.out.println(key);
  51. Animal animal = getInstance(key);
  52. animal.eat();
  53. }
  54. }

6.2、向下转型的使用

Person 类

  1. public class Person {
  2. String name;
  3. int age;
  4. public void eat(){
  5. System.out.println("人,吃饭");
  6. }
  7. public void walk(){
  8. System.out.println("人,走路");
  9. }
  10. }

Man 类

  1. public class Man extends Person{
  2. boolean isSmoking;
  3. public void earnMoney(){
  4. System.out.println("男人负责工作养家");
  5. }
  6. public void eat() {
  7. System.out.println("男人多吃肉,长肌肉");
  8. }
  9. public void walk() {
  10. System.out.println("男人霸气的走路");
  11. }
  12. }

Woman 类

  1. public class Woman extends Person{
  2. boolean isBeauty;
  3. public void goShopping(){
  4. System.out.println("女人喜欢购物");
  5. }
  6. public void eat(){
  7. System.out.println("女人少吃,为了减肥。");
  8. }
  9. public void walk(){
  10. System.out.println("女人,窈窕的走路。");
  11. }
  12. }

PersonTest 类

  1. /*
  2. * 面向对象之三:多态性
  3. *
  4. * 1.理解多态性:可以理解为一个事物的多种态性。
  5. * 2.何为多态性:
  6. * 对象的多态性:父类的引用指向子类的对象(或子类的对象赋值给父类的引用)
  7. *
  8. * 3.多态的使用:虚拟方法调用
  9. * 有了对象多态性以后,我们在编译期,只能调用父类声明的方法,但在执行期实际执行的是子类重写父类的方法
  10. * 简称:编译时,看左边;运行时,看右边。
  11. *
  12. * 若编译时类型和运行时类型不一致,就出现了对象的多态性(Polymorphism)
  13. * 多态情况下,
  14. * “看左边”:看的是父类的引用(父类中不具备子类特有的方法)
  15. * “看右边”:看的是子类的对象(实际运行的是子类重写父类的方法)
  16. *
  17. * 4.多态性的使用前提:
  18. * ① 类的继承关系
  19. * ② 方法的重写
  20. * 5.对象的多态性:只适用于方法,不适用于属性(编译和运行都看左边)
  21. */
  22. public class PersonTest {
  23. public static void main(String[] args) {
  24. Person p1 = new Person();
  25. p1.eat();
  26. Man man = new Man();
  27. man.eat();
  28. man.age = 25;
  29. man.earnMoney();
  30. // ************************************
  31. System.out.println("************************");
  32. // 对象的多态性,父类的引用指向子类的对象
  33. Person p2 = new Man();
  34. // Person p3 = new Woman();
  35. // 多态的使用:当调用子父类同名同参数方法时,实际调用的是子类重写父类的方法---虚拟方法调用
  36. p2.eat();
  37. p2.walk();
  38. // p2.earnMoney();
  39. System.out.println("**************************");
  40. // 不能调用子类所特有的方法、属性,编译时,p2是Person类型,
  41. // p2.earnMoney();
  42. p2.name = "Tom";
  43. // p2.isSmoking = true;
  44. // 有了对象的多态性以后,内存中实际上是加载了子类特有的属性和方法,但是由于变量声明为父类类型,导致
  45. // 编译时,只能调用父类中声明的属性和方法。子类的属性和方法不能调用。
  46. // 如何才能调用子类所特有的属性和方法?
  47. // 使用强制类型转换符,也可称为:向下转型
  48. Man m1 = (Man) p2;
  49. m1.earnMoney();
  50. m1.isSmoking = true;
  51. // 使用强转时,可能出现ClassCastException异常
  52. // Woman w1 = (Woman)p2;
  53. // w1.goShopping();
  54. /*
  55. * instanceof关键字的使用
  56. *
  57. * a instanceof A:判断对象a是否是类A的实例。如果,返回true,如果不是,返回false;
  58. *
  59. * 使用情境:为了避免在向下转型时出现ClassCastException异常,我们在进行向下转型之前,先进行
  60. * instanceof的判断,一旦返回true,就进行向下转型。如果返回false,不进行向下转型。
  61. *
  62. * 如果a instanceof A返回true,则a instanceof B也返回true。 其中类B是类A的父类。
  63. *
  64. */
  65. if (p2 instanceof Woman) {
  66. Woman w1 = (Woman) p2;
  67. w1.goShopping();
  68. System.out.println("**********Woman*********");
  69. }
  70. if (p2 instanceof Man) {
  71. Man m2 = (Man) p2;
  72. m2.earnMoney();
  73. System.out.println("*********Man************");
  74. }
  75. if (p2 instanceof Person) {
  76. System.out.println("***********Person************");
  77. }
  78. if (p2 instanceof Object) {
  79. System.out.println("***********object************");
  80. }
  81. //向下转型的常见问题
  82. //练习
  83. //问题1:编译时通过,运行时不通过
  84. //举例一
  85. // Person p3 = new Woman();
  86. // Man m3 = (Man)p3;
  87. //举例二
  88. Person p4 = new Person();
  89. Man m4 = (Man)p4;
  90. //问题二:编译通过,运行时也通过
  91. Object obj = new Woman();
  92. Person p = (Person)obj;
  93. //问题三:编译不通过
  94. // Man m5 = new woman();
  95. // String str = new Date();
  96. // Object o = new Date();
  97. // String str1 = (String)o;
  98. }
  99. }

image.png

6.3、多态性的练习

1、练习1

  1. /*
  2. * 练习:子类继承父类
  3. *
  4. * 1.若子类重写了父类方法,就意味着子类里定义的方法彻底覆盖了父类里的同名方法,
  5. * 系统将不可能把父类里的方法转移到子类中。
  6. *
  7. * 2.对于实例变量则不存在这样的现象,即使子类里定义了与父类完全相同的实例变量,
  8. * 这个实例变量依然不可能覆盖父类中定义的实例变量
  9. *
  10. */
  11. public class FieldMethodTest {
  12. public static void main(String[] args){
  13. Sub s= new Sub();
  14. System.out.println(s.count); //20
  15. s.display();//20
  16. Base b = s;
  17. //==:对于引用数据类型来讲,比较的是两个引用数据类型变量的地址值是否一样。
  18. System.out.println(b == s); //true
  19. System.out.println(b.count); //10
  20. b.display();
  21. }
  22. }
  23. class Base {
  24. int count= 10;
  25. public void display() {
  26. System.out.println(this.count);
  27. }
  28. }
  29. class Sub extends Base {
  30. int count= 20;
  31. public void display() {
  32. System.out.println(this.count);
  33. }
  34. }

2、练习2

  1. /*
  2. * 建立InstanceTest 类,在类中定义方法method(Person e);
  3. *
  4. * 在method中:
  5. * (1)根据e的类型调用相应类的getInfo()方法。
  6. * (2)根据e的类型执行:
  7. * 如果e为Person类的对象,输出:“a person”;
  8. * 如果e为Student类的对象,输出:“a student”“a person ”
  9. * 如果e为Graduate类的对象,输出:“a graduated student”
  10. * “a student” “a person”
  11. *
  12. */
  13. class Person {
  14. protected String name = "person";
  15. protected int age = 50;
  16. public String getInfo() {
  17. return "Name: " + name + "\n" + "age: " + age;
  18. }
  19. }
  20. class Student extends Person {
  21. protected String school = "pku";
  22. public String getInfo() {
  23. return "Name: " + name + "\nage: " + age + "\nschool: " + school;
  24. }
  25. }
  26. class Graduate extends Student {
  27. public String major = "IT";
  28. public String getInfo() {
  29. return "Name: " + name + "\nage: " + age + "\nschool: " + school + "\nmajor:" + major;
  30. }
  31. }
  32. public class InstanceTest{
  33. public static void main(String[] args) {
  34. //虚拟方法调用
  35. InstanceTest test = new InstanceTest();
  36. test.method(new Student());
  37. }
  38. public void method(Person e){
  39. String info = e.getInfo();
  40. System.out.println(info);
  41. //方法一
  42. if(e instanceof Graduate){
  43. System.out.println("a graduated student");
  44. System.out.println("a student");
  45. System.out.println("a person");
  46. }else if(e instanceof Student){
  47. System.out.println("a student");
  48. System.out.println("a person");
  49. }else{
  50. System.out.println("a person");
  51. }
  52. //方法二
  53. if(e instanceof Graduate){
  54. System.out.println("a graduated student");
  55. }
  56. if(e instanceof Student){
  57. System.out.println("a student");
  58. }
  59. if(e instanceof Person){
  60. System.out.println("a person");
  61. }
  62. }
  63. }

3、练习3
GeometricObject类

  1. /*
  2. * 定义三个类,父类GeometricObject代表几何形状,子类Circle代表圆形,MyRectangle代表矩形。
  3. */
  4. public class GeometricObject {
  5. protected String color;
  6. protected double weight;
  7. public String getColor() {
  8. return color;
  9. }
  10. public void setColor(String color) {
  11. this.color = color;
  12. }
  13. public double getWeight() {
  14. return weight;
  15. }
  16. public void setWeight(double weight) {
  17. this.weight = weight;
  18. }
  19. public GeometricObject(String color, double weight) {
  20. super();
  21. this.color = color;
  22. this.weight = weight;
  23. }
  24. public double findArea(){
  25. return 0.0;
  26. }
  27. }

Circle类

  1. public class Circle extends GeometricObject {
  2. private double radius;
  3. public Circle(double weight,String color, double radius) {
  4. super(color,weight);
  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 findArea() {
  15. return 3.14 * radius * radius;
  16. }
  17. }

MyRectangle类

  1. public class MyRectangle extends GeometricObject {
  2. private double width;
  3. private double height;
  4. public MyRectangle(double width, double height,String color,double weight) {
  5. super(color, weight);
  6. this.height = height;
  7. this.width = width;
  8. }
  9. public double getWidth() {
  10. return width;
  11. }
  12. public void setWidth(double width) {
  13. this.width = width;
  14. }
  15. public double getHeight() {
  16. return height;
  17. }
  18. public void setHeight(double height) {
  19. this.height = height;
  20. }
  21. @Override
  22. public double findArea() {
  23. return width * height;
  24. }
  25. }

GeometricTest类

  1. /*
  2. * 定义一个测试类GeometricTest,编写equalsArea方法测试两个对象的面积是否相等(注意方法的参数类型,利用动态绑定技术),
  3. * 编写displayGeometricObject方法显示对象的面积(注意方法的参数类型,利用动态绑定技术)。
  4. *
  5. */
  6. public class GeometricTest {
  7. public static void main(String[] args) {
  8. GeometricTest test = new GeometricTest();
  9. Circle c1 = new Circle(2.3,"white",1.0);
  10. test.displayGeometricObject(c1);
  11. Circle c2 = new Circle(3.3,"white",1.0);
  12. test.displayGeometricObject(c2);
  13. boolean isEqual = test.equalsArea(c1, c2);
  14. System.out.println("面积是否相等: " + isEqual);
  15. MyRectangle rect = new MyRectangle(2.1, 3.4,"red",1.0);
  16. test.displayGeometricObject(rect);
  17. }
  18. public void displayGeometricObject(GeometricObject o){
  19. System.out.println("面积为: " + o.findArea());
  20. }
  21. //测试两个对象的面积是否相等
  22. public boolean equalsArea(GeometricObject o1,GeometricObject o2){
  23. return o1.findArea() == o2.findArea();
  24. }
  25. }

练习4

  1. /*
  2. * 面试题:多态是编译时行为还是运行时行为?如何证明?
  3. *
  4. * 证明见如下:
  5. */
  6. import java.util.Random;
  7. class Animal {
  8. protected void eat() {
  9. System.out.println("animal eat food");
  10. }
  11. }
  12. class Cat extends Animal {
  13. protected void eat() {
  14. System.out.println("cat eat fish");
  15. }
  16. }
  17. class Dog extends Animal {
  18. public void eat() {
  19. System.out.println("Dog eat bone");
  20. }
  21. }
  22. class Sheep extends Animal {
  23. public void eat() {
  24. System.out.println("Sheep eat grass");
  25. }
  26. }
  27. public class InterviewTest {
  28. public static Animal getInstance(int key) {
  29. switch (key) {
  30. case 0:
  31. return new Cat ();
  32. case 1:
  33. return new Dog ();
  34. default:
  35. return new Sheep ();
  36. }
  37. }
  38. public static void main(String[] args) {
  39. int key = new Random().nextInt(3);
  40. System.out.println(key);
  41. Animal animal = getInstance(key);
  42. animal.eat();
  43. }
  44. }

4、面试题拓展

  1. /* 考查多态的笔试题目:
  2. * 面试题:多态是编译时行为还是运行时行为?如何证明?
  3. *
  4. * 拓展问题
  5. */
  6. public class InterviewTest1 {
  7. public static void main(String[] args) {
  8. Base base = new Sub();
  9. base.add(1, 2, 3);
  10. // Sub s = (Sub)base;
  11. // s.add(1,2,3);
  12. }
  13. }
  14. class Base {
  15. public void add(int a, int... arr) {
  16. System.out.println("base");
  17. }
  18. }
  19. class Sub extends Base {
  20. public void add(int a, int[] arr) {
  21. System.out.println("sub_1");
  22. }
  23. // public void add(int a, int b, int c) {
  24. // System.out.println("sub_2");
  25. // }
  26. }

07、Object 类的使用

  1. /*
  2. * java.lang.Object类
  3. * 1.Object类是所有Java类的根父类;
  4. * 2.如果在类的声明中未使用extends关键字指明其父类,则默认父类为java.lang.Object类
  5. * 3.Object类中的功能(属性、方法)就具有通用性。
  6. * 属性:无
  7. * 方法:equals() / toString() / getClass() / hashCode() / clone() /finalize()
  8. * wait() 、notify()、notifyAll()
  9. *
  10. * 4.Object类只声明了一个空参的构造器。
  11. *
  12. * 面试题:
  13. * final、finally、finalize的区别?
  14. *
  15. */
  16. public class ObjectTest {
  17. public static void main(String[] args) {
  18. }
  19. }
  20. class Order{
  21. }

7.1、Object类中的主要结构

image.png

7.2、==操作符与equals方法

  1. import java.sql.Date;
  2. /*
  3. * 面试题: ==和equals的区别
  4. *
  5. * 一、回顾==的使用
  6. * == : 运算符
  7. * 1.可以使用在基本数据类型变量和引用数据类型变量中
  8. * 2.如果比较的是基本数据类型变量:比较两个变量保存的数据是否相等。(不一定类型要相同)
  9. * 如果比较的是引用数据类型变量:比较两个对象的地址值是否相同,即两个引用是否指向同一个对象实体
  10. * 补充: == 符号使用时,必须保证符号左右两边的变量类型一致。
  11. *
  12. * 二、equals()方法的使用
  13. * 1.是一个方法,而非运算符
  14. * 2.只能适用于引用数据类型。
  15. * 3.Object类中equals()的定义:
  16. * public boolean equals(Object obj){
  17. * return (this == obj);
  18. * }
  19. * 说明:Object类中定义的equals()和==的作用是相同的,比较两个对象的地址值是否相同,即两个引用是否指向同一个对象实体。
  20. *
  21. * 4.像String、Date、File、包装类等都重写了Object类中的equals()方法.
  22. * 两个引用的地址是否相同,而是比较两个对象的“实体内容”是否相同。
  23. *
  24. * 5.通常情况下,我们自定义的类如果使用equals()的话,也通常是比较两个对象的"实体内容"是否相同。那么,我们
  25. * 就需要对Object类中的equals()进行重写。
  26. *
  27. * 重写的原则:比较两个对象的实体内容是否相同。
  28. *
  29. */
  30. public class EqualsTest {
  31. public static void main(String[] args) {
  32. //基本数据类型
  33. int i = 10;
  34. int j = 10;
  35. double d = 10.0;
  36. System.out.println(i == j); //true
  37. System.out.println(i == d); //true
  38. // boolean b =true;
  39. // System.out.println(i == b);
  40. char c = 10;
  41. System.out.println(i == c); //true
  42. char c1 = 'A';
  43. char c2 = 65;
  44. System.out.println(c1 == c2); //true
  45. //引用数据类型
  46. Customer cust1 = new Customer("Tom" ,21);
  47. Customer cust2 = new Customer("Tom" ,21);
  48. System.out.println(cust1 == cust2); //false
  49. String str1 = new String("BAT");
  50. String str2 = new String("BAT");
  51. System.out.println(str1 == str2); //false
  52. System.out.println("*************************");
  53. System.out.println(cust1.equals(cust2)); //false
  54. System.out.println(str1.equals(str2)); //true
  55. Date date1 = new Date(23432525324L);
  56. Date date2 = new Date(23432525324L);
  57. System.out.println(date1.equals(date2)); //true
  58. }
  59. }

Customer类

  1. public class Customer {
  2. private String name;
  3. private int age;
  4. public String getName() {
  5. return name;
  6. }
  7. public void setName(String name) {
  8. this.name = name;
  9. }
  10. public int getAge() {
  11. return age;
  12. }
  13. public void setAge(int age) {
  14. this.age = age;
  15. }
  16. public Customer() {
  17. super();
  18. }
  19. public Customer(String name, int age) {
  20. super();
  21. this.name = name;
  22. this.age = age;
  23. }
  24. //自动生成的equals()
  25. @Override
  26. public boolean equals(Object obj) {
  27. if (this == obj)
  28. return true;
  29. if (obj == null)
  30. return false;
  31. if (getClass() != obj.getClass())
  32. return false;
  33. Customer other = (Customer) obj;
  34. if (age != other.age)
  35. return false;
  36. if (name == null) {
  37. if (other.name != null)
  38. return false;
  39. } else if (!name.equals(other.name))
  40. return false;
  41. return true;
  42. }
  43. //重写原则,比较两个对象的实体内容(即name和age)是否相同
  44. //手动实现equals()的重写
  45. // @Override
  46. // public boolean equals(Object obj) {
  47. //
  48. System.out.println("Customer equals()....");
  49. // if(this == obj){
  50. // return true;
  51. // }
  52. //
  53. // if(obj instanceof Customer){
  54. // Customer cust = (Customer)obj;
  55. // //比较两个对象的属性是否都相同
  56. if(this.age == cust.age && this.name.equals(cust.name)){
  57. return true;
  58. }else{
  59. return false;
  60. }
  61. //
  62. // //或
  63. // return this.age == cust.age && this.name.equals(cust.name);
  64. // }
  65. //
  66. // return false;
  67. // }
  68. }

7.2.1、重写equals()方法的原则

对称性:如果x.equals(y)返回是“true”,那么y.equals(x)也应该返回是“true”。
自反性:x.equals(x)必须返回是“true”。
传递性:如果x.equals(y)返回是“true”,而且y.equals(z)返回是“true”,那么z.equals(x)也应该返回是“true”。
一致性:如果x.equals(y)返回是“true”,只要x和y内容一直不变,不管你重复x.equals(y)多少次,返回都是“true”。
任何情况下,x.equals(null),永远返回是“false”;x.equals(和x不同类型的对象)永远返回是“false”。

  1. int it = 65;
  2. float fl= 65.0f;
  3. System.out.println("65和65.0f是否相等?" + (it == fl)); //true
  4. char ch1 = 'A';
  5. char ch2 = 12;
  6. System.out.println("65和'A'是否相等?" + (it == ch1));//true
  7. System.out.println("12和ch2是否相等?" + (12 == ch2));//true
  8. String str1 = new String("hello");
  9. String str2 = new String("hello");
  10. System.out.println("str1和str2是否相等?"+ (str1 == str2));//false
  11. System.out.println("str1是否equals str2?"+(str1.equals(str2)));//true
  12. System.out.println("hello" == new java.util.Date()); //编译不通过

练习一

  1. /*
  2. * .编写Order类,有int型的orderId,String型的orderName,
  3. * 相应的getter()和setter()方法,两个参数的构造器,重写父类的equals()方法:public booleanequals(Object obj),
  4. * 并判断测试类中创建的两个对象是否相等。
  5. *
  6. *
  7. */
  8. public class OrderTest {
  9. public static void main(String[] args) {
  10. Order order1 = new Order(1001,"AA");
  11. Order order2 = new Order(1001,"BB");
  12. System.out.println(order1.equals(order2)); //false
  13. Order order3 = new Order(1001,"BB");
  14. System.out.println(order2.equals(order3)); //true
  15. }
  16. }
  17. class Order{
  18. private int orderId;
  19. private String orderName;
  20. public int getOrderId() {
  21. return orderId;
  22. }
  23. public void setOrderId(int orderId) {
  24. this.orderId = orderId;
  25. }
  26. public String getOrderName() {
  27. return orderName;
  28. }
  29. public void setOrderName(String orderName) {
  30. this.orderName = orderName;
  31. }
  32. public Order(int orderId, String orderName) {
  33. super();
  34. this.orderId = orderId;
  35. this.orderName = orderName;
  36. }
  37. public boolean equals(Object obj){
  38. if(this == obj){
  39. return true;
  40. }
  41. if(obj instanceof Order){
  42. Order order = (Order)obj;
  43. //正确的
  44. return this.orderId == order.orderId && this.orderName.equals(order.orderName);
  45. //错误的
  46. // return this.orderId == order.orderId && this.orderName == order.orderName;
  47. }
  48. return false;
  49. }
  50. }

练习二

  1. /*
  2. * 请根据以下代码自行定义能满足需要的MyDate类,在MyDate类中覆盖equals方法,
  3. * 使其判断当两个MyDate类型对象的年月日都相同时,结果为true,否则为false。
  4. * public boolean equals(Object o)
  5. */
  6. public class MyDateTest {
  7. public static void main(String[] args) {
  8. MyDate m1= new MyDate(14, 3, 1976);
  9. MyDate m2= new MyDate(14, 3, 1976);
  10. if(m1== m2) {
  11. System.out.println("m1==m2");
  12. } else{
  13. System.out.println("m1!=m2"); // m1 != m2
  14. }
  15. if(m1.equals(m2)) {
  16. System.out.println("m1 is equal to m2");// m1 is equal to m2
  17. } else{
  18. System.out.println("m1 is not equal to m2");
  19. }
  20. }
  21. }
  22. class MyDate{
  23. private int day;
  24. private int month;
  25. private int year;
  26. public MyDate(int day, int month, int year) {
  27. super();
  28. this.day = day;
  29. this.month = month;
  30. this.year = year;
  31. }
  32. public int getDay() {
  33. return day;
  34. }
  35. public void setDay(int day) {
  36. this.day = day;
  37. }
  38. public int getMonth() {
  39. return month;
  40. }
  41. public void setMonth(int month) {
  42. this.month = month;
  43. }
  44. public int getYear() {
  45. return year;
  46. }
  47. public void setYear(int year) {
  48. this.year = year;
  49. }
  50. @Override
  51. public boolean equals(Object obj) {
  52. if(this == obj){
  53. return true;
  54. }
  55. if(obj instanceof MyDate){
  56. MyDate myDate = (MyDate)obj;
  57. return this.day == myDate.day && this.month == myDate.month &&
  58. this.year == myDate.year;
  59. }
  60. return false;
  61. }
  62. // @Override
  63. // public boolean equals(Object obj) {
  64. // if (this == obj)
  65. // return true;
  66. // if (obj == null)
  67. // return false;
  68. // if (getClass() != obj.getClass())
  69. // return false;
  70. // MyDate other = (MyDate) obj;
  71. // if (day != other.day)
  72. // return false;
  73. // if (month != other.month)
  74. // return false;
  75. // if (year != other.year)
  76. // return false;
  77. // return true;
  78. // }
  79. }

7.3、toString的使用

  1. public class Customer {
  2. private String name;
  3. private int age;
  4. public String getName() {
  5. return name;
  6. }
  7. public void setName(String name) {
  8. this.name = name;
  9. }
  10. public int getAge() {
  11. return age;
  12. }
  13. public void setAge(int age) {
  14. this.age = age;
  15. }
  16. public Customer() {
  17. super();
  18. }
  19. public Customer(String name, int age) {
  20. super();
  21. this.name = name;
  22. this.age = age;
  23. }
  24. //自动生成的equals()
  25. @Override
  26. public boolean equals(Object obj) {
  27. if (this == obj)
  28. return true;
  29. if (obj == null)
  30. return false;
  31. if (getClass() != obj.getClass())
  32. return false;
  33. Customer other = (Customer) obj;
  34. if (age != other.age)
  35. return false;
  36. if (name == null) {
  37. if (other.name != null)
  38. return false;
  39. } else if (!name.equals(other.name))
  40. return false;
  41. return true;
  42. }
  43. //重写原则,比较两个对象的实体内容(即name和age)是否相同
  44. //手动实现equals()的重写
  45. // @Override
  46. // public boolean equals(Object obj) {
  47. //
  48. System.out.println("Customer equals()....");
  49. // if(this == obj){
  50. // return true;
  51. // }
  52. //
  53. // if(obj instanceof Customer){
  54. // Customer cust = (Customer)obj;
  55. // //比较两个对象的属性是否都相同
  56. if(this.age == cust.age && this.name.equals(cust.name)){
  57. return true;
  58. }else{
  59. return false;
  60. }
  61. //
  62. // //或
  63. // return this.age == cust.age && this.name.equals(cust.name);
  64. // }
  65. //
  66. // return false;
  67. // }
  68. //手动实现
  69. // @Override
  70. // public String toString() {
  71. // return "Customer[name = " + name + ",age = " + age + "]";
  72. // }
  73. //自动实现
  74. @Override
  75. public String toString() {
  76. return "Customer [name=" + name + ", age=" + age + "]";
  77. }
  78. }

ToStringTest类

  1. import java.util.Date;
  2. /*
  3. * Object类中toString()的使用
  4. *
  5. * 1.当我们输出一个引用对象时,实际上就是调用当前对象的toString()
  6. * 2.Object类中toString的定义方法
  7. * public String toString() {
  8. * return getClass().getName() + "@" + Integer.toHexString(hashCode());
  9. * }
  10. *
  11. * 3.像String、Date、File、包装类等都重写了Object类中的toString()方法。
  12. * 使得在调用toString()时,返回"实体内容"信息.
  13. *
  14. * 4.自定义类如果重写toString()方法,当调用此方法时,返回对象的"实体内容".
  15. */
  16. public class ToStringTest {
  17. public static void main(String[] args) {
  18. Customer cust1 = new Customer("Tom" ,21);
  19. System.out.println(cust1.toString()); //github4.Customer@15db9742
  20. System.out.println(cust1); //github4.Customer@15db9742 ---> Customer[name = Tom,age = 21]
  21. String str = new String("MM");
  22. System.out.println(str);
  23. Date date = new Date(45362348664663L);
  24. System.out.println(date.toString()); //Wed Jun 24 12:24:24 CST 3407
  25. }
  26. }

练习
GeometricObject类

  1. public class GeometricObject {
  2. protected String color;
  3. protected double weight;
  4. public GeometricObject() {
  5. super();
  6. this.color = "white";
  7. this.weight = 1.0;
  8. }
  9. public GeometricObject(String color, double weight) {
  10. super();
  11. this.color = color;
  12. this.weight = weight;
  13. }
  14. public String getColor() {
  15. return color;
  16. }
  17. public void setColor(String color) {
  18. this.color = color;
  19. }
  20. public double getWeight() {
  21. return weight;
  22. }
  23. public void setWeight(double weight) {
  24. this.weight = weight;
  25. }
  26. }

Circle类

  1. public class Circle extends GeometricObject{
  2. private double radius;
  3. public Circle() { //初始化对象的color属性为“white”,weight属性为1.0,radius属性为1.0。
  4. super(); //super自带,不需再写
  5. // this.color = "white";
  6. // this.weight = 1.0;
  7. this.radius = 1.0;
  8. }
  9. //初始化对象的color属性为“white”,weight属性为1.0,radius根据参数构造器确定。
  10. public Circle(double radius) {
  11. super(); //super自带,不需再写
  12. // this.color = "white";
  13. // this.weight = 1.0;
  14. this.radius = radius;
  15. }
  16. public Circle(double radius,String color,double weight) {
  17. super(color,weight);
  18. this.radius = radius;
  19. }
  20. public double getRadius() {
  21. return radius;
  22. }
  23. public void setRadius(double radius) {
  24. this.radius = radius;
  25. }
  26. //计算圆的面积
  27. public double findArea(){
  28. return Math.PI * radius * radius;
  29. }
  30. @Override //重写equals方法,比较两个圆的半径是否相等,如相等,返回true。
  31. public boolean equals(Object obj) {
  32. if(this == obj){
  33. return true;
  34. }
  35. if(obj instanceof Circle){
  36. Circle c = (Circle)obj;
  37. return this.radius == c.radius;
  38. }
  39. return false;
  40. }
  41. @Override
  42. public String toString() { //重写toString方法,输出圆的半径。
  43. return "Circle [radius=" + radius + "]";
  44. }
  45. }

测试类

  1. /*
  2. * 写一个测试类,创建两个Circle对象,判断其颜色是否相等;
  3. * 利用equals方法判断其半径是否相等;利用toString()方法输出其半径。
  4. *
  5. */
  6. public class CircleTest {
  7. public static void main(String[] args) {
  8. Circle circle1 = new Circle(2.3);
  9. Circle circle2 = new Circle(3.3,"white",2.0);
  10. System.out.println("颜色是否相等: " + circle1.getColor().equals(circle2.color));
  11. System.out.println("半径是否相等: " + circle1.equals(circle2));
  12. System.out.println(circle1);
  13. System.out.println(circle2.toString());
  14. }
  15. }

08、包装类(Wrapper)的使用

8.1、单元测试方法的使用

  1. import java.util.Date;
  2. import org.junit.Test;
  3. /*
  4. * java中的JUnit单元测试
  5. *
  6. * 步骤:
  7. * 1.选中当前项目工程 --》 右键:build path --》 add libraries --》 JUnit 4 --》 下一步
  8. * 2.创建一个Java类进行单元测试。
  9. * 此时的Java类要求:①此类是公共的 ②此类提供一个公共的无参构造器
  10. * 3.此类中声明单元测试方法。
  11. * 此时的单元测试方法:方法的权限是public,没有返回值,没有形参。
  12. *
  13. * 4.此单元测试方法上需要声明注解:@Test并在单元测试类中调用:import org.junit.Test;
  14. * 5.声明好单元测试方法以后,就可以在方法体内测试代码。
  15. * 6.写好代码后,左键双击单元测试方法名:右键 --》 run as --》 JUnit Test
  16. *
  17. * 说明:如果执行结果无错误,则显示是一个绿色进度条,反之,错误即为红色进度条。
  18. */
  19. public class JUnit {
  20. int num = 10;
  21. //第一个单元测试方法
  22. @Test
  23. public void testEquals(){
  24. String s1 = "MM";
  25. String s2 = "MM";
  26. System.out.println(s1.equals(s2));
  27. //ClassCastException的异常
  28. // Object obj = new String("GG");
  29. // Date date = (Date)obj;
  30. System.out.println(num);
  31. show();
  32. }
  33. public void show(){
  34. num = 20;
  35. System.out.println("show()...");
  36. }
  37. //第二个单元测试方法
  38. @Test
  39. public void testToString(){
  40. String s2 = "MM";
  41. System.out.println(s2.toString());
  42. }
  43. }

image.png
image.png
image.png

8.2、包装类的使用

  1. /*
  2. * 包装类的使用
  3. * 1.java提供了8种基本数据类型对应的包装类,使得基本数据类型的变量具有类的特征
  4. * 基本数据类型 包装类
  5. * byte Byte
  6. * short Short
  7. * int Integer
  8. * long Long
  9. * float Float
  10. * double Double
  11. * boolean Boolean
  12. * char Character
  13. * 注意:其中Byte、Short、Integer、Long、Float、Double的父类是:Number
  14. * /

8.3、包装类与基本数据类型相互转换

image.png

  1. import org.junit.Test;
  2. /*
  3. * 2.基本数据类型、包装类、String三者之间的相互转换。
  4. *
  5. */
  6. public class WrapperTest {
  7. //String类型---> 基本数据类型、包装类,调用包装类的parseXxx()
  8. @Test
  9. public void test5(){
  10. String str1 = "123";
  11. // String str1 = "123a";
  12. //错误的情况,可能会报错
  13. // int num1 = (int)str1;
  14. // Integer in1 = (Integer)str1;
  15. int num2 = Integer.parseInt(str1);
  16. System.out.println(num2 + 1); //124
  17. String str2 = "true";
  18. Boolean b1 = Boolean.parseBoolean(str2);
  19. System.out.println(b1); //true
  20. }
  21. //基本数据类型、包装类---》String类型,调用String重载的valueOf(Xxx xxx)
  22. @Test
  23. public void test4(){
  24. int num1 = 10;
  25. //方式1:连接运算
  26. String str1 = num1 + "";
  27. //方式2:调用String的valueOf(Xxx xxx)
  28. float f1 = 12.3f;
  29. String str2 = String.valueOf(f1); //"12.3"
  30. Double d1 = new Double(12.4);
  31. String str3 = String.valueOf(d1);
  32. System.out.println(str2);
  33. System.out.println(str3); //"12.4"
  34. }
  35. /*
  36. * JDK 5.0 新特性:自动装箱与自动拆箱
  37. */
  38. @Test
  39. public void test3(){
  40. // int num1 = 10;
  41. // //基本数据类型 --》 包装类的对象
  42. // method(num1); //Object obj = num1
  43. //自动装箱:基本数据类型 --》 包装类
  44. int num2 = 10;
  45. Integer in1 = num2;//自动装箱
  46. boolean b1 = true;
  47. Boolean b2 = b1;//自动装箱
  48. //自动拆箱:包装类 --》 基本数据类型
  49. System.out.println(in1.toString());
  50. int num3 = in1;
  51. }
  52. public void method(Object obj){
  53. System.out.println(obj);
  54. }
  55. //包装类 --》 基本数据类型:调用包装类的xxxValue()
  56. @Test
  57. public void test2() {
  58. Integer in1 = new Integer(12);
  59. int i1 = in1.intValue();
  60. System.out.println(i1 + 1);
  61. Float f1 = new Float(12.3f);
  62. float f2 = f1.floatValue();
  63. System.out.println(f2 + 1);
  64. }
  65. //基本数据类型--》包装类,调用包装类的构造器
  66. @Test
  67. public void test1() {
  68. int num1 = 10;
  69. // System.out.println(num1.toString());
  70. Integer in1 = new Integer(num1);
  71. System.out.println(in1.toString());
  72. Integer in2 = new Integer("123");
  73. System.out.println(in2.toString());
  74. //报异常
  75. // Integer in3 = new Integer("123abc");
  76. // System.out.println(in3.toString());
  77. Float f1 = new Float(12.3f);
  78. Float f2 = new Float("12.3");
  79. System.out.println(f1);
  80. System.out.println(f2);
  81. Boolean b1 = new Boolean(true);
  82. Boolean b2 = new Boolean("true");
  83. Boolean b3 = new Boolean("true123");
  84. System.out.println(b3); //false
  85. Order order = new Order();
  86. System.out.println(order.isMale); //false
  87. System.out.println(order.isFemale); //null
  88. }
  89. }
  90. class Order{
  91. boolean isMale;
  92. Boolean isFemale;
  93. }

8.4、练习

1、面试题

  1. import org.junit.Test;
  2. /*
  3. * 如下两个题目输出结果相同吗?各是什么:
  4. * Object o1= true? new Integer(1) : new Double(2.0);
  5. * System.out.println(o1);//
  6. *
  7. * Object o2;
  8. * if(true)
  9. * o2 = new Integer(1);
  10. * else
  11. * o2 = new Double(2.0);
  12. * System.out.println(o2);//
  13. *
  14. */
  15. public class InterViewTest {
  16. @Test
  17. public void test(){
  18. Object o1= true? new Integer(1) : new Double(2.0);
  19. System.out.println(o1);// 1.0
  20. }
  21. @Test
  22. public void test2(){
  23. Object o2;
  24. if(true)
  25. o2 = new Integer(1);
  26. else
  27. o2 = new Double(2.0);
  28. System.out.println(o2);// 1
  29. }
  30. @Test
  31. public void method1() {
  32. Integer i = new Integer(1);
  33. Integer j = new Integer(1);
  34. System.out.println(i == j); //false
  35. //Integer内部定义了一个IntegerCache结构,IntegerCache中定义Integer[]
  36. //保存了从-128-127范围的整数。如果我们使用自动装箱的方式,给Integer赋值的范围在其中时,
  37. //可以直接使用数组中的元素,不用再去new了。目的,提高效率。
  38. Integer m = 1;
  39. Integer n = 1;
  40. System.out.println(m == n);//true
  41. Integer x = 128;//相当于new了一个Integer对象
  42. Integer y = 128;//相当于new了一个Integer对象
  43. System.out.println(x == y);//false
  44. }
  45. }

2、编程题
image.png

  1. import java.util.Scanner;
  2. import java.util.Vector;
  3. /*
  4. * 利用Vector代替数组处理:从键盘读入学生成绩(以负数代表输入结束),
  5. * 找出最高分,并输出学生成绩等级。
  6. *
  7. * 提示:数组一旦创建,长度就固定不变,所以在创建数组前就需要知道它的长度。
  8. * 而向量类java.util.Vector可以根据需要动态伸缩。
  9. *
  10. * 创建Vector对象:Vector v=new Vector();
  11. * 给向量添加元素:v.addElement(Object obj); //obj必须是对象
  12. * 取出向量中的元素:Object obj=v.elementAt(0);
  13. * 注意第一个元素的下标是0,返回值是Object类型的。
  14. * 计算向量的长度:v.size();
  15. * 若与最高分相差
  16. * 10分内:A等;
  17. * 20分内:B等;
  18. * 30分内:C等;
  19. * 其它:D等
  20. *
  21. */
  22. public class VectorTest {
  23. public static void main(String[] args) {
  24. // 1.实例化Scanner,用于从键盘获取学生成绩
  25. Scanner scan = new Scanner(System.in);
  26. // 2.创建Vector对象:Vector v=new Vector();相当于原来的数组
  27. Vector v = new Vector();
  28. // 3.通过for(;;)或while(true)方式,给Vector中添加数组
  29. int maxScore = 0;
  30. for (;;) {
  31. System.out.println("请输入学生成绩(以负数代表输入结束)");
  32. int score = scan.nextInt();
  33. // 3.2 当输入是负数时,跳出循环
  34. if (score < 0) {
  35. break;
  36. }
  37. if (score > 100) {
  38. System.out.println("输入的数据非法,请重新输入");
  39. continue;
  40. }
  41. // 3.1 添加操作::v.addElement(Object obj)
  42. // jdk5.0之前:
  43. // Integer inScore = new Integer(score);
  44. // v.addElement(inScore);//多态
  45. // jdk5.0之后:
  46. v.addElement(score);// 自动装箱
  47. // 4.获取学生成绩的最大值
  48. if (maxScore < score) {
  49. maxScore = score;
  50. }
  51. }
  52. // 5.遍历Vector,得到每个学生的成绩,并与最大成绩比较,得到每个学生的等级。
  53. char level;
  54. for (int i = 0; i < v.size(); i++) {
  55. Object obj = v.elementAt(i);
  56. // jdk 5.0之前:
  57. // Integer inScore = (Integer)obj;
  58. // int score = inScore.intValue();
  59. // jdk 5.0之后:
  60. int score = (int) obj;
  61. if (maxScore - score <= 10) {
  62. level = 'A';
  63. } else if (maxScore - score <= 20) {
  64. level = 'B';
  65. } else if (maxScore - score <= 30) {
  66. level = 'C';
  67. } else {
  68. level = 'D';
  69. }
  70. System.out.println("student-" + i + " score is " + score + ",level is " + level);
  71. }
  72. }
  73. }