
java
文章平均质量分 71
iteye_13882
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Java Nested Class and Inner Class
This is based on the description of http://docs.oracle.com/javase/tutorial/java/javaOO/nested.html and I have enclosed a example project to show some syntax and features related to the Nested Class....原创 2012-06-11 13:11:26 · 206 阅读 · 0 评论 -
java - Reference to Generic type Lis<E> should be parameterized
As the java has evolved from the old java without generic to java with advanced generic containers. You will see the following code will be flagged as an error by the Java compiler. List childr...原创 2012-11-22 16:25:36 · 494 阅读 · 0 评论 -
java - static class explained
If you are from a C# background, you will know what I am talking about. In c# when a class is static, that means you cannot instantiate instance from this class. and beside, you cannot have instance m...原创 2012-12-18 08:30:37 · 148 阅读 · 0 评论 -
java - common practice to rethrow exceptions
New comer to Java may throw exception in the wrong way, and the net outcome of that is very misleading error message, which can cause the user of the libraries very confused. so it is very vital to ke...原创 2012-12-20 22:50:49 · 222 阅读 · 0 评论 -
zz - Better exception handling in Java 7 : Multicatch and final rethrow
Better exception handling in Java 7 : Multicatch and final rethrow May 5, 2010 by Baptiste Wicht 18 Comments I’m happy to announce that an other improvement from the Project Coin has be marked...原创 2013-01-22 10:07:49 · 165 阅读 · 0 评论