JAVA
zhongrunfu
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[转]Setting the class path
Setting the class path Synopsis The class path is the path that the Java runtime environment searches for classes and other resource files. The class search path (m...原创 2013-11-26 17:34:44 · 161 阅读 · 0 评论 -
[转]PATH and CLASSPATH
PATH and CLASSPATH This section explains how to use the PATH and CLASSPATH environment variables on Microsoft Windows, Solaris, and Linux. Consult the installation instructions included with y...原创 2013-11-26 17:38:54 · 148 阅读 · 0 评论 -
[转]深入研究java.lang.ThreadLocal类
深入研究java.lang.ThreadLocal类 一、概述 ThreadLocal是什么呢?其实ThreadLocal并非是一个线程的本地实现版本,它并不是一个Thread,而是threadlocalvariable(线程局部变量)。也许把它命名为ThreadLocalVar更加合适。线程局部变量(ThreadLocal)其实的功用非常简单,就是为每一个使用该变量的线程...原创 2013-12-16 00:59:08 · 138 阅读 · 0 评论 -
[转]java 1.5和1.6中的新特性
java 1.5和1.6中的新特性 JDK5新特性(与1.4相比)【转】 1 循环 for (type variable : array){ body} for (type variable : arrayList){body} 而1.4必须是: for (int i = 0; i < array.length; i++){ type variable = array[...原创 2013-12-17 17:38:00 · 127 阅读 · 0 评论 -
架构和设计J2EE应用程序【阅读笔记】
最近把刘晟写的这个PDF大概的看了一遍,简单的记录了一下,不管有否价值,以便日后翻看。 ------------------------------------------- 使用适合的模式 架构师应潜心于基于模式的论证过程: ...原创 2015-01-13 17:11:14 · 189 阅读 · 0 评论
分享