码迷,mamicode.com
首页 > 其他好文 > 详细

【NC代码学会的】代码规范

时间:2016-01-30 22:27:16      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:

if(obj_agg!=null && obj_agg.length > 0) {

}else{
return;
 ②
NCLocator.getInstance().lookup(IUAPQueryBS.class).
 IUAPQueryBS.class  快捷方式 iuapq  alt+/   
 ③ 
string a=null:
if(a != null){}//这时候一定不为空
 但是
List a = new ArrayList<>();
if( a != null a.size() >0){}//这种判断比较合理
写代码要有格式
if(){
}else{
 
if(a == 1){}//符号左右直接加空格
  
任何时候都要考虑空指针这种情况
//这是拆分数组的处理
List<String> listPks = this.paginationModel.getObjectPks();
StringBuffer sql_jxgl = new StringBuffer();
if(listPks != null && listPks.size() > 0){
sql_jxgl.append("(");
for(String listPks_l : listPks){
if(listPks_l != null && listPks_l.length() > 0){//这两个条件爱你都要有
listPks_l = "‘"+listPks_l+"‘,";
sql_jxgl.append(listPks_l); 

}
}else{
return;
}
//下面两个是不同,常用第二个
String a=null;
String a= ”“;
 
 
 
 

【NC代码学会的】代码规范

标签:

原文地址:http://www.cnblogs.com/zzzzw/p/5171505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!