摘要:
2014-04-26 18:44题目:在java的try-catch-finally语句块里,如果catch里面有return语句的话,finally还会被执行吗?解法:会。代码: 1 // 14.2 Will the code in finally {} be executed if there ... 阅读全文
摘要:
2014-04-26 18:20题目:从继承的角度,把构造函数设成private有什么意义?解法:就不能继承了。单体模式里也这么干,目的是为了不让使用者自主生成对象,进行限制。代码: 1 // 14.1 In terms of inheritance, what is the point of de... 阅读全文