
java
oQianQu
这个作者很懒,什么都没留下…
展开
-
java char 转 int 咋转?
char c = '8';//先转换成String类型:String s = String.valueOf(c);//再转换成Int类型:int i = Integer.parseInt(s);//打印看看结果:if(i==8)System.out.println("Ok");原创 2013-10-17 22:33:56 · 755 阅读 · 0 评论 -
GC机制的原理
Automatic garbage collection is the process of looking at heap memory, identifying which objects are in use and which are not, and deleting the unused objects. An in use object, or a referenced object翻译 2014-09-29 12:59:37 · 1572 阅读 · 0 评论