总结之java

来源:互联网 发布:创维网络机顶盒e900 编辑:程序博客网 时间:2024/06/06 17:23

1.java的reflect

http://blog.csdn.net/chencheng126/article/details/41646531


2.map和hashmap

http://blog.csdn.net/chencheng126/article/details/41721363


3.fileChannel

http://blog.csdn.net/chencheng126/article/details/41726631


4.类名.class,class.forName(),getClass()

http://blog.csdn.net/chencheng126/article/details/42262495


5.用Apache Commons CLI 开发命令行

http://blog.csdn.net/chencheng126/article/details/42262511


6.java关键字之this和super

http://blog.csdn.net/chencheng126/article/details/42491875


7.Arraylist,vector,linkedlist

http://blog.csdn.net/chencheng126/article/details/42493337


8.dom4j常用简单用法

http://blog.csdn.net/chencheng126/article/details/42524741


9.abstract class和interface

一篇好文,介绍的很清楚

http://blog.csdn.net/chencheng126/article/details/42642431


10.Java-String类型的参数传递问题

为什么string在java中是值传递。

1)Java中的基本参数类型,都只是支持值传递;而非基本操作类型,就是引用传递。

2)Sting在JAVA中属于非基本操作类型,为什么会是值传递?因为,String是cha[]的包装类,包装类在使用时体现的是其对应基本类型的性质。

http://blog.csdn.net/chencheng126/article/details/42644827










0 0