标签:efi 解析 more 目标 OWIN 关键字 定义 any his
1、对类和对象进一步的了解。
2、学习静态类和静态方法。
3、学习类之间不同类型的关系。
4、学习方法的设计及重载。
5、学习了如何调试。
问题1:定义变量错误,显示非法表达式。
问题2:类有错误,显示方法声明无效。
问题3解决方案:访问方法名中变量首字母应为大写。
(statistics.sh脚本的运行结果截图)
错题1
The instruction super( ); does which of the following?
A .calls the method super as defined in the current class
B .calls the method super as defined in the current class‘parent class
C .calls the method super as defined in java.lang
D .calls the constructor as defined in the current class
E .calls the constructor as defined in the current class‘parent class
答案:A
解析:instruction super表示对当前类的父类中某些内容的调用。因为除了super()之外没有消息,所以它是对父类构造函数的调用。
错题2
All classes in Java are directly or indirectly subclasses of the ________ class.
A .Wrapper
B .String
C .Reference
D .this
E .Object
答案:E
解析:Java要求所有类都有父类。如果一个类没有扩展另一个类,那么默认情况下,它会扩展对象类。所以对象类是Java中所有其他类的父类或父类。
错题6
Which of these is correct?
A .a base class is a parent class or super class
B .a base class is a child class or derived class
C .a child class is a super class of its parent
D .a parent class is a subclass of its child
E .none of the above
答案:A
解析:术语、基类、父类、超类是彼此的同义词。它们都暗示该类将被用作继承的基础,随后的类将扩展(继承)基类。
1、这两周学的内容开始逐渐变难了,有点跟不上,但是多抽出点空闲时间还是能够学到更多东西的,第四周,我尽量抽出更多的时间去敲代码。
2、多敲一敲课本上的代码,累计代码量,打好基础。
代码行数(新增/累积) | 博客量(新增/累积) | 学习时间(新增/累积) | 重要成长 | |
---|---|---|---|---|
目标 | 5000行 | 30篇 | 400小时 | |
第一周 | 200/200 | 2/2 | 20/20 | |
第二周 | 300/500 | 2/4 | 18/38 | |
第三周 | 500/1000 | 3/7 | 22/60 | |
第四周 | 300/1300 | 2/9 | 30/90 |
尝试一下记录「计划学习时间」和「实际学习时间」,到期末看看能不能改进自己的计划能力。这个工作学习中很重要,也很有用。
耗时估计的公式:Y=X+X/N ,Y=X-X/N,训练次数多了,X、Y就接近了。
计划学习时间:30小时
实际学习时间:25小时
改进情况:
(有空多看看现代软件工程 课件
软件工程师能力自我评价表)
20182328 2019-2020-1 《数据结构与面向对象程序设计》第4周学习总结
标签:efi 解析 more 目标 OWIN 关键字 定义 any his
原文地址:https://www.cnblogs.com/monsterhunter/p/11614395.html