浏览代码

Update README.md

Git-Leon 6 年前
父节点
当前提交
63e0039d71
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9
    0
      README.md

+ 9
- 0
README.md 查看文件

@@ -228,3 +228,12 @@
228 228
 ### Part 11.2 - Test `Alumni` Class
229 229
 * Write a test class which ensures that each `Student` in the `Alumni` class has been taught `1200` hours upon injection of the `Alumni` dependency.
230 230
 * Ensure the `numberOfHoursTaught` has been evenly distributed amongst each of the instructors.
231
+
232
+* **Tip:** How to derive `numberOfHoursTaught` dynamically
233
+```java
234
+int numberOfInstructors = instructors.size();
235
+int numberOfStudents = students.size();
236
+double numberOfHoursToTeachEachStudent = 1200;
237
+double numberOfHoursToTeach = numberOfHoursToTeachEachStudent * numberOfStudents;
238
+double numberOfHoursPerInstructor = numberOfHoursToTeach / numberOfInstructors;
239
+```