- 1、本文档共10页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
修改PMD总结【DOC精选】
PMD报错原因修改总结
Avoid unnecessary Comparisons in Boolean exception.(Boolean类型重复判断)
错误 例子: if(null! = a a.size0)
正确 if(null! = a false == a.IsEmpay())
2. Avoid Using implementation types like (ArrayList HashMap/ LinkedHashMap) ,use the interface instand.(用数组的接口类型)
错误 例子:ArrayListString arraylist=new ArrayListString();
正确 ListString list=new ArrayListString();
错误 例子: private static HashMap map=new HashMap();
正确 private static Map map=new HashMap();
错误 例子: private static LinkedHashMap map=new LinkedHashMap();
正确 private static Map map=new LinkedHashMap();
3. Method names should not start with capital letters(方法名不能以大写开头)。
错误 例子: public class Start()
正确 public class start() 可以用快捷键 Alt+shift+R全部替
4.varivable that are final and static should be in all caps.(定义的参数必须大写)
错误 例子:public static final String root
正确 public static final String ROOT
5.Avoid appending charcutars as Strings in StringBuffer append (避免在StringBuffer里附加单个字符时附加成String类型)
错误 例子: buf.append(“)”)或者buf.append(“a”)
正确 buf.append())或者 buf.append(a)
6.use ArrayList instanded of vector(使用ArrayList替换vector后还是会报错,所以直接改成是以它的接口形式替换)
错误 例子: vectorString keys = new vectorString(ELE);
正确 ListString keys = new ArrayListString(ELE);
7. Variables that are not final should not contain underscores (except for underscores in standard prefix/suffix) (变量不是final类型的不能包含下划线)
错误 例子: private int DEAULT_PORT = 8001;
正确 private int DEAULTPORT = 8001;(调用它的所有类都需要改动)
8. Variables should start with a lowercase character(参数必须要以小写开始)
错误 例子: private static int HANDLE_MAX = 200;
正确 private static int handleMax = 200;
9. Using equalsIgnoreCase() is cleaner than using toUpperCase/toLowerCase().equals().
错误 例子:
正确
10. Unnecessary wrapper object creation
错误 例子: intCurPage = Integer.valueOf(curPage).intValue();
正确 intCurPage = Integer.parseInt(curPage);
11. This is an inefficient use of StringBuffer.toString; call StringBuffer
文档评论(0)