熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java核心技術 >> 正文

讓人抓狂匪夷所思的4組代碼

2022-06-13   來源: Java核心技術 

  

  確保這個值等於ture

  if (someBoolean == true) {  
   doSomething();  
   } 

  只有等於ture時我才return ture

  if (result == true)  
   return true;  
   else 
   return result; 

  我就是不信任if

  if (result <= ) {  
   handling();  
   }  
   else if (result > ) {  
   otherHandling();  
   }  
   else {  
   handling(); // to be sure  
   } 

  要寫出一看就懂的代碼

  function DocumentDotWrite(s){  
   documentwrite(s);  
   } 


From:http://tw.wingwit.com/Article/program/Java/hx/201311/26810.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.