1. 本周学习总结 1.1 尝试使用思维导图总结有关多态与接口的知识点. 1.2 可选:使用常规方法总结其他上课内容. 2. 书面作业 **代码阅读:Child压缩包内源代码 Child.java源代码 ```package com.parent; public class Child extends Parent{ public static void main(String[] args){ Parent p = new Parent(); Child c = new Child(); c.…