第一部分:理论知识学习部分
Java用于控制可见性的4个访问权限修饰符:
1.private(只有该类可以访问)
2.protected(该类及其子类的成员可以访问,同一个包中的类也可访问)
3.public(该类或非该类均可)
4.默认(相同包中的类可以访问)
使用访问修饰符的原因:实现受限信息隐藏
信息隐藏目的:
1. 对类中任何实现细节的更改不会影响使用该类的代码
2. 防止用户意外删除数据.
3. 易于使用类
3. Object:所有类的超类
Object类是Java中所有类的祖先——每一个类都由它扩展而来。在不给出超类的情况下,Java会自动把Object作为要定义类的超类。
equals方法:测试某个对象是否同另一个对象相等。它在Object类中的实现是判断两个对象是否具有相同的引用。如果两个对象具有相同的引用,它们一定是相等的
hashCode方法:导出某个对象的散列码。散列码是任意整数,表示对象的存储地址。两个相等对象的散列码相等。
toString方法:返回一个代表该对象域值的字符串。toString方法返回字符串的格式:类名,然后在方括号中列举域值。通过 getClass().getName()获得类名的字符串。
枚举类
声明枚举类
public enum Grade { A, B, C, D, E };
枚举类是一个类,它的隐含超类是java.lang.Enum。枚举类不能有public修饰的构造函数,构造函数都是隐含private,编译器自动处理。
枚举值隐含都是由public、static、final修饰的,无须自己添加这些修饰符。
比较两个枚举类型的值时,永远不需要调用 equals方法,直接使用"=="进行相等比较
二.实验内容和步骤
实验1 补充以下程序中主类内main方法体,以验证四种权限修饰符的用法。
public class TEST1 { private String t1 = "这是TEST1的私有属性"; public String t2 = "这是TEST1的公有属性"; protected String t3 = "这是TEST1受保护的属性"; String t4 = "这是TEST1的默认属性"; private void tese1() { System.out.println("我是TEST1用private修饰符修饰的方法"); } public void tese2() { System.out.println("我是TEST1用public修饰符修饰的方法"); } protected void tese3() { System.out.println("我是TEST1用protected修饰符修饰的方法"); } void tese4() { System.out.println("我是TEST1无修饰符修饰的方法"); } } public class TEST2 extends TEST1{ private String e1 = "这是TEST2的私有属性"; public String e2 = "这是TEST2的公有属性"; protected String e3 = "这是TEST2受保护的属性"; String e4 = "这是TEST2的默认属性"; public void demo1() { System.out.println("我是TEST2用public修饰符修饰的方法"); } private void demo2() { System.out.println("我是TEST2用private修饰符修饰的方法"); } protected void demo3() { System.out.println("我是TEST2用protected修饰符修饰的方法"); } void demo4() { System.out.println("我是TEST2无修饰符修饰的方法"); } } public class Main { public static void main(String[] args) { TEST2 test2 = new TEST2(); /*以下设计代码分别调用 demo1 demo2 demo3 demo4 test1 test2 test3 test4方法和t1 t2 t3 t3 e1 e2 e3 e4属性,结合程序运行结果理解继承和权限修饰符的用法与区别*/ } } |
package test1;public class Main {public static void main(String[] args) {TEST2 test2=new TEST2();test2.demo1();test2.demo3();test2.demo4();test2.tese2();test2.tese3();test2.tese4();System.out.println(test2.e2);System.out.println(test2.e3);System.out.println(test2.e4);System.out.println(test2.t2);System.out.println(test2.t3);System.out.println(test2.t4);} }
package test1;public class TEST1 {private String t1="这是TEST1的私有属性";public String t2="这是TEST2的公有属性";protected String t3="这是TEST1受保护的属性";String t4="这是TEST1的默认属性";private void tese1() {System.out.println("我是TEST1用private修饰符修饰的方法 ");}public void tese2() {System.out.println("我是TEST1用public修饰符修饰的方法");}protected void tese3() {System.out.println("我是TEST1用protected修饰符修饰的方法");}void tese4() {System.out.println("我是TEST1无修饰符修饰的方法");} }
package test1;public class TEST2 extends TEST1 {private String e1="这是TEST2的私有属性";public String e2="这是TEST2的公有属性";protected String e3="这是TEST2受保护的属性";String e4="这是TEST2的默认属性";public void demo1() {System.out.println("我是TEST2用public修饰符修饰的方法");}private void demo2() {System.out.println("我是TEST2用private修饰符修饰的方法");}protected void demo3() {System.out.println("我是TEST2用protected修饰符修饰的方法");}void demo4() {System.out.println("我是TEST2无修饰符修饰的方法");} }
实验2 第五章测试程序反思,继承知识总结。
测试程序1:
Ÿ 编辑、编译、调试运行教材程序5-8、5-9、5-10(教材174页-177页);
Ÿ 结合程序运行结果,理解程序代码,掌握Object类的定义及用法;
实验代码:
package equals;/*** This program demonstrates the equals method.* @version 1.12 2012-01-26* @author Cay Horstmann*/ public class EqualsTest {public static void main(String[] args){Employee alice1 = new Employee("Alice Adams", 75000, 1987, 12, 15);Employee alice2 = alice1;Employee alice3 = new Employee("Alice Adams", 75000, 1987, 12, 15);Employee bob = new Employee("Bob Brandson", 50000, 1989, 10, 1);System.out.println("alice1 == alice2: " + (alice1 == alice2));System.out.println("alice1 == alice3: " + (alice1 == alice3));System.out.println("alice1.equals(alice3): " + alice1.equals(alice3));System.out.println("alice1.equals(bob): " + alice1.equals(bob));System.out.println("bob.toString(): " + bob);Manager carl = new Manager("Carl Cracker", 80000, 1987, 12, 15);Manager boss = new Manager("Carl Cracker", 80000, 1987, 12, 15);boss.setBonus(5000);System.out.println("boss.toString(): " + boss);System.out.println("carl.equals(boss): " + carl.equals(boss));System.out.println("alice1.hashCode(): " + alice1.hashCode());System.out.println("alice3.hashCode(): " + alice3.hashCode());System.out.println("bob.hashCode(): " + bob.hashCode());System.out.println("carl.hashCode(): " + carl.hashCode());} }
package equals;import java.time.*; import java.util.Objects;public class Employee {private String name;private double salary;private LocalDate hireDay;public Employee(String name, double salary, int year, int month, int day){this.name = name;this.salary = salary;hireDay = LocalDate.of(year, month, day);}public String getName(){return name;}public double getSalary(){return salary;}public LocalDate getHireDay(){return hireDay;}public void raiseSalary(double byPercent){double raise = salary * byPercent / 100;salary += raise;}public boolean equals(Object otherObject){// 快速检查对象是否相同 if (this == otherObject) return true;// 如果显式参数为空,则必须返回falseif (otherObject == null) return false;// 如果类不匹配,它们就不能相等if (getClass() != otherObject.getClass()) return false;// 现在我们知道另一个对象是非空雇员Employee other = (Employee) otherObject;// 测试字段是否具有相同的值return Objects.equals(name, other.name) && salary == other.salary && Objects.equals(hireDay, other.hireDay);}public int hashCode(){return Objects.hash(name, salary, hireDay); }public String toString(){return getClass().getName() + "[name=" + name + ",salary=" + salary + ",hireDay=" + hireDay+ "]";} }
package equals;public class Manager extends Employee {private double bonus;public Manager(String name, double salary, int year, int month, int day){super(name, salary, year, month, day);bonus = 0;}public double getSalary(){double baseSalary = super.getSalary();return baseSalary + bonus;}public void setBonus(double bonus){this.bonus = bonus;}public boolean equals(Object otherObject){if (!super.equals(otherObject)) return false;Manager other = (Manager) otherObject;// super.equals检查这个和其他属于同一个类return bonus == other.bonus;}//获得散列码,看看是否相同public int hashCode(){return java.util.Objects.hash(super.hashCode(), bonus);}public String toString(){return super.toString() + "[bonus=" + bonus + "]";} }
测试程序2:
Ÿ 编辑、编译、调试运行教材程序5-11(教材182页);
Ÿ 结合程序运行结果,理解程序代码,掌握ArrayList类的定义及用法;
实验代码:
package arrayList;import java.util.*;/*** This program demonstrates the ArrayList class.* @version 1.11 2012-01-26* @author Cay Horstmann*/ public class ArrayListTest {public static void main(String[] args){// 用三个雇员对象填充工作人员数组列表ArrayList<Employee> staff = new ArrayList<>();staff.add(new Employee("Carl Cracker", 75000, 1987, 12, 15));staff.add(new Employee("Harry Hacker", 50000, 1989, 10, 1));staff.add(new Employee("Tony Tester", 40000, 1990, 3, 15));// 把每个人的工资提高5%for (Employee e : staff)e.raiseSalary(5);// 打印所有员工对象的信息for (Employee e : staff)System.out.println("name=" + e.getName() + ",salary=" + e.getSalary() + ",hireDay="+ e.getHireDay());} }
package arrayList;import java.time.*;public class Employee {private String name;private double salary;private LocalDate hireDay;public Employee(String name, double salary, int year, int month, int day){this.name = name;this.salary = salary;hireDay = LocalDate.of(year, month, day);}public String getName(){return name;}public double getSalary(){return salary;}public LocalDate getHireDay(){return hireDay;}public void raiseSalary(double byPercent){double raise = salary * byPercent / 100;salary += raise;} }
测试程序3:
Ÿ 编辑、编译、调试运行程序5-12(教材189页);
Ÿ 结合运行结果,理解程序代码,掌握枚举类的定义及用法;
实验代码:
package enums;import java.util.*;/*** This program demonstrates enumerated types.* @version 1.0 2004-05-24* @author Cay Horstmann*/ public class EnumTest { public static void main(String[] args){ Scanner in = new Scanner(System.in);System.out.print("Enter a size: (SMALL, MEDIUM, LARGE, EXTRA_LARGE) ");String input = in.next().toUpperCase();Size size = Enum.valueOf(Size.class, input);System.out.println("size=" + size);System.out.println("abbreviation=" + size.getAbbreviation());if (size == Size.EXTRA_LARGE)System.out.println("Good job--you paid attention to the _."); } }enum Size {//枚举类的所有实例必须放在第一行显示。SMALL("S"), MEDIUM("M"), LARGE("L"), EXTRA_LARGE("XL"); 29 private Size(String abbreviation) { this.abbreviation = abbreviation; }public String getAbbreviation() { return abbreviation; }private String abbreviation; }
实验3:采用个人账号登录https://pintia.cn/,完成《2018秋季西北师范大学面向对象程序设计(Java)(ch1-ch5)测试题2》,测试时间60分钟;
实验4: 课后完成实验3未完成的测试内容。
实验总结:通过上课过程中老师关于四个修饰符与三个类的讲解与实验,我更深层次的了解了四个修饰符的权限范围,了解了三个特殊类的含义及使用方法。代码的逻辑结构更清晰,对我们的算法设计思维也有所帮助。同时,在自己自主学习过程中依然有碰到困难,通过自己看书查资料有所了解,在细节上的掌握不足,还需实践提高。