快速业务通道

良好的Java风格:第一部分 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-21
   }catch(Exception ex){      /* Show exception */      ExceptionDialog.show(this, "Invalid rotation length: ", ex); }   }

例2. 好的注释风格。

/**    * Apply the ASCII rotation cipher to the user''s text. The length is retrieved    * from the rotation length field, and the user''s text is retrieved from the    * text area.    *    * @author Thornton Rose    */   private void applyRotAscii() {     int   rotLength = 0; // rotation length     RotAscii cipher = null; // ASCII rotation cipher     try {      // Get rotation length field and convert to integer.            rotLength = Integer.parseInt(rotationLengthField.getText().trim());            // Create ASCII rotation cipher and transform the user''s text with it.            cipher = new RotAscii(rotLength);      textArea.setText(cipher.transform(textArea.getText()));     } catch(Exception ex) {      // Report the exception to the user.            ExceptionDialog.show(this, "Invalid rotation length: ", ex);     }   }

良好的Java风格:第一部分(3)

时间:2011-01-05 Thornton Rose

块和声明

使用下面的原则来写块和声明:

每行只放置一个声明。

控制声明的时候总是使用大括号(比如,''if'')。

考虑在块结束的地方做注释(比如,} //end if),特别是那些长的或者嵌套的块。

把各种变量的声明放在块的开头。

总是初始化变量。

如果想做完美主义者,左对齐变量名。

switch块中缩进case子句。

操作符的前后分别加上空格。

使用if,for,或者while的时候,在"("前面加上空格。

在表达式中使用空格和圆括号以提高可阅读性。---www.bianceng.cn

''for''循环中的变量在应用“把各种变量的声明放在块的开头”的原则时是个例外。循环变量应该在for语句的初始化部分进行声明,比如,for(int i = 0; ...)

在块结束的地方放置一个声明有助于你捕捉到意外删除的结束大括号。有时候,在一个巨大的文件中要想找到它们真的会把你逼疯的。

例3. 坏的块风格。

try{     for(int i=0;i<5;i++){      ...      }     int threshold=calculateThreshold();     float variance=(threshold*2.8)-1;     int c=0;     if (threshold<=15) c=calculateCoefficient();     switch(c){     case 1: setCeiling(c*2); break;     case 2: setCeiling(c*3); break;     else: freakOut();     }   }catch(Exception ex){ ... }

例4. 好的块风格。

try {     int  threshold = 0;     float variance  = 0.0;     int  coefficient = 0;         // Prepare 5 cycles.         for (int i = 0; i < 5; i ++){      prepareCycle(i);     }         // Calculate the threshold and variance.         threshold = calculateThreshold();     variance = (threshold * 2.8) - 1;         // If the threshold is less than the maximum, calculate the coefficient.     // Otherwise, throw an exception.         if (threshold <= MAX_THRESHOLD) {      coefficient = calculateCoefficient();     } else {      throw new RuntimeException("Threshold exceeded!");     }         // Set

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号