标签:
官方文档:Google Java Style
中文翻译版:Google Java编程风格指南, Hawstein‘s Blog
可以先看官方文档,遇到不确定有疑问的,可以再对照翻译版本阅读,加深理解。
5.2.1 包名称
包名称全部是小写字母,简单地将连续单词连接在以前(没有下划线)。
例如:用 com.example.deepspace, 而不是 com.example.deepSpace 或 com.example.deep_space.
5.3 驼峰式命名法
以短语形式开头的名称:
例子
Prose form | Correct | Incorrect |
---|---|---|
"XML HTTP request" | XmlHttpRequest |
XMLHTTPRequest |
"new customer ID" | newCustomerId |
newCustomerID |
"inner stopwatch" | innerStopwatch |
innerStopWatch |
"supports IPv6 on iOS?" | supportsIpv6OnIos |
supportsIPv6OnIOS |
"YouTube importer" | YouTubeImporter YoutubeImporter * |
* 表示可以,但不推荐。
标签:
原文地址:http://www.cnblogs.com/TonyYPZhang/p/5470211.html