基本介绍

  • 一个对象应该对其他对象保持最少的了解
  • 类与类关系越密切,耦合度越大
  • 迪米特法则(Demeter Principle)又叫最少知道原则,即一个类对自己依赖的类知道的
    越少越好。也就是说,对于被依赖的类不管多么复杂,都尽量将逻辑封装在类的内
    部。对外除了提供的public 方法,不对外泄露任何信息
  • 迪米特法则还有个更简单的定义:
  • 直接的朋友:每个对象都会与其他对象有耦合关系,只要两个对象之间有耦合关系,
    我们就说这两个对象之间是朋友关系。耦合的方式很多,依赖,关联,组合,聚合
    等。其中,我们称出现成员变量,方法参数,方法返回值中的类为直接的朋友,而
    出现在局部变量中的类不是直接的朋友。也就是说,陌生的类最好不要以局部变量
    的形式出现在类的内部



**

案例

有一个学校, 下属有各个学院和
总部, 现要求打印出学校总部员
工ID和学院员工的id

测试代码

  1. public static void main(String[] args) {
  2. //创建了一个 SchoolManager 对象
  3. SchoolManager schoolManager = new SchoolManager();
  4. //输出学院的员工id 和 学校总部的员工信息
  5. schoolManager.printAllEmployee(new CollegeManager());
  6. }

问题代码
**

  1. //学校总部员工类
  2. class Employee {
  3. private String id;
  4. public void setId(String id) {
  5. this.id = id;
  6. }
  7. public String getId() {
  8. return id;
  9. }
  10. }
  11. //学院的员工类
  12. class CollegeEmployee {
  13. private String id;
  14. public void setId(String id) {
  15. this.id = id;
  16. }
  17. public String getId() {
  18. return id;
  19. }
  20. }
  21. //管理学院员工的管理类
  22. class CollegeManager {
  23. //返回学院的所有员工
  24. public List<CollegeEmployee> getAllEmployee() {
  25. List<CollegeEmployee> list = new ArrayList<CollegeEmployee>();
  26. for (int i = 0; i < 10; i++) { //这里我们增加了10个员工到 list
  27. CollegeEmployee emp = new CollegeEmployee();
  28. emp.setId("学院员工id= " + i);
  29. list.add(emp);
  30. }
  31. return list;
  32. }
  33. }
  34. //学校管理类
  35. //分析 SchoolManager 类的直接朋友类有哪些 Employee、CollegeManager
  36. //CollegeEmployee 不是 直接朋友 而是一个陌生类,这样违背了 迪米特法则
  37. class SchoolManager {
  38. //返回学校总部的员工
  39. public List<Employee> getAllEmployee() {
  40. List<Employee> list = new ArrayList<Employee>();
  41. for (int i = 0; i < 5; i++) { //这里我们增加了5个员工到 list
  42. Employee emp = new Employee();
  43. emp.setId("学校总部员工id= " + i);
  44. list.add(emp);
  45. }
  46. return list;
  47. }
  48. //该方法完成输出学校总部和学院员工信息(id)
  49. void printAllEmployee(CollegeManager sub) {
  50. // 分析问题
  51. // 1. 这里的 CollegeEmployee 不是 SchoolManager的直接朋友
  52. // 2. CollegeEmployee 是以局部变量方式出现在 SchoolManager
  53. // 3. 违反了 迪米特法则
  54. //获取到学院员工
  55. List<CollegeEmployee> list1 = sub.getAllEmployee();
  56. System.out.println("------------学院员工------------");
  57. for (CollegeEmployee e : list1) {
  58. System.out.println(e.getId());
  59. }
  60. //获取到学校总部员工
  61. List<Employee> list2 = this.getAllEmployee();
  62. System.out.println("------------学校总部员工------------");
  63. for (Employee e : list2) {
  64. System.out.println(e.getId());
  65. }
  66. }
  67. }

实例改进

1) 前面设计的问题在于SchoolManager中, CollegeEmployee类并不是
SchoolManager类的直接朋友 (分析)
2) 按照迪米特法则,应该避免类中出现这样非直接朋友关系的耦合
3) 对代码按照迪米特法则 进行改进

将问题代码转移到自己的类里面

  1. //管理学院员工的管理类
  2. class CollegeManager {
  3. //返回学院的所有员工
  4. public List<CollegeEmployee> getAllEmployee() {
  5. List<CollegeEmployee> list = new ArrayList<CollegeEmployee>();
  6. for (int i = 0; i < 10; i++) { //这里我们增加了10个员工到 list
  7. CollegeEmployee emp = new CollegeEmployee();
  8. emp.setId("学院员工id= " + i);
  9. list.add(emp);
  10. }
  11. return list;
  12. }
  13. //输出学院员工的信息
  14. public void printEmployee() {
  15. //获取到学院员工
  16. List<CollegeEmployee> list1 = getAllEmployee();
  17. System.out.println("------------学院员工------------");
  18. for (CollegeEmployee e : list1) {
  19. System.out.println(e.getId());
  20. }
  21. }
  22. }
  23. //学校管理类
  24. //分析 SchoolManager 类的直接朋友类有哪些 Employee、CollegeManager
  25. //CollegeEmployee 不是 直接朋友 而是一个陌生类,这样违背了 迪米特法则
  26. class SchoolManager {
  27. //返回学校总部的员工
  28. public List<Employee> getAllEmployee() {
  29. List<Employee> list = new ArrayList<Employee>();
  30. for (int i = 0; i < 5; i++) { //这里我们增加了5个员工到 list
  31. Employee emp = new Employee();
  32. emp.setId("学校总部员工id= " + i);
  33. list.add(emp);
  34. }
  35. return list;
  36. }
  37. //该方法完成输出学校总部和学院员工信息(id)
  38. void printAllEmployee(CollegeManager sub) {
  39. //分析问题
  40. //1. 将输出学院的员工方法,封装到CollegeManager
  41. sub.printEmployee();
  42. //获取到学校总部员工
  43. List<Employee> list2 = this.getAllEmployee();
  44. System.out.println("------------学校总部员工------------");
  45. for (Employee e : list2) {
  46. System.out.println(e.getId());
  47. }
  48. }
  49. }

个人总结 SchoolManager也可以处理一下