2013年9月27日
摘要: 概述CaseFormat用来转换各种不同的编程语言间的变量名命名格式, 主要用到的方法只有一个 CaseFormat.to(CaseFormat from, String s) CaseFormat fromFormat = CaseFormat.LOWER_CAMEL; CaseFormat toFormat = CaseFormat.UPPER_CAMEL; String s = "lowerCamel"; System.out.println(fromFormat.to(toFormat, s));输出lowerCamelLower... 阅读全文
posted @ 2013-09-27 11:40 ZimZz 阅读(3337) 评论(0) 推荐(1) 编辑
摘要: 本文主要介绍HotSpot JVM的 Generations 机制,原文来自 Oracle 文档 Java SE 6 HotSpot[tm] Virtual Machine Garbage Collection Tuning 第三,四章 -- Generations & Performance Co... 阅读全文
posted @ 2013-09-27 01:03 ZimZz 阅读(394) 评论(0) 推荐(0) 编辑