thinking in java 4th edition习题
game41
这个作者很懒,什么都没留下…
展开
-
182页习题17
/** *Exercise 17: (1) Modify Exercise 16 so that Frog overrides *the method definitions from the base class (provides new definitions *原创 2011-09-28 23:26:49 · 722 阅读 · 0 评论 -
184页习题18
/** * 创建一个类, 里面包含一个static final field和一个final field, 比较异同. * (Exercise 18: (2) Create a class with a static final field and a final field原创 2011-10-02 12:47:19 · 1024 阅读 · 0 评论 -
185页练习19 --P185E19
/** * 练习19,难度2. * 创建一个类, 类中有一个blank final指针, 该指针指向一个对象, * 在所有的constructor中执行black final的初始化. * 说明blank final在使用前, 必须初始化, 而一旦初始化, 该blank原创 2011-10-02 16:02:52 · 572 阅读 · 0 评论 -
187页的20和21题 --P187E20
//Final and Private/** * Exercise 20: (1) Show that @Override annotation solves the problem in this section. * 这部分讲的是final和private, 只要是pr原创 2011-10-02 22:59:36 · 605 阅读 · 0 评论 -
188页22题 --P188E22
//final class/** * Exercise 22: (1) Create a final class and attempt to inherit from it. * 创建一个final的类, 看看能不能从中派生出子类. * --显然是不能的. */p原创 2011-10-02 23:07:06 · 595 阅读 · 0 评论 -
190页23题--证明类只被加载一次
/** * Exercise 23: (2) Prove that class loading takes place only once. * Prove that loading may be caused by either the creation of the f原创 2011-10-03 00:11:02 · 937 阅读 · 0 评论