
java-学习
iteye_9033
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Map 学习
interface Map :implements 有 HashMap,TreeMap; Map的主要方法: [align=left][size=x-small][color=red]put(); putAll(); get(key); remove(key); containsKey(key); containsValue(value); ketSet(); values(...原创 2009-11-01 14:47:35 · 108 阅读 · 0 评论 -
List-LinkedList- 源代码 研究
List 接口: java.lang.Object java.util.AbstractCollection java.util.AbstractList java.util.AbstractSequentialList java.util.LinkedList All Implemented Interfaces: ...原创 2009-11-01 17:10:38 · 96 阅读 · 0 评论 -
Java---高级 学习 资料
:arrow: 1.Java关键字之native,strictfp,transient,volatile [url]http://www.iteye.com/topic/82640[/url] 2。主题:java Native Method初涉 [url]http://www.iteye.com/topic/72543[/url] 主题:Java JNI 编程进阶 具体怎么跑起来的 ...原创 2009-11-02 09:34:09 · 203 阅读 · 0 评论 -
java 陷阱
[color=darkred][align=center][size=medium]猜猜输出什么?[/size][/align][/color] class Test{ Test(){ do1(); } public void do1(){ } } class Farther extends Test{ Integer...原创 2009-11-06 16:37:30 · 136 阅读 · 0 评论 -
java Transaction -JTA and JDBC URL
[url]http://www.iteye.com/topic/280746[/url] Hibernate事务处理机制 JDBC tutorial- very details and clearly hierarchy: [url]http://www.jdbc-tutorial.com/[/url] Java Advanced tutorials( including EJB,...原创 2009-12-01 13:22:46 · 114 阅读 · 0 评论 -
Java Interview question 面试题
What if the static modifier is removed from the signature of the main method? Or What if I do not provide the String array as the argument to the method? Program compiles. But at runtime throws...原创 2011-09-07 15:41:15 · 152 阅读 · 0 评论 -
用java 写一个Singleton
/饿汉式 public class EagerSingleton { //一上来就创建实例,所以叫饿汉 private static final EagerSingleton m_instance = new EagerSingleton(); private EagerSingleton() { } public static EagerSingleton getInst...原创 2011-10-01 22:41:54 · 205 阅读 · 0 评论