Effective Java 2 讀書筆記 第9章 異常

第57條:只針對異常的情況才使用異常 異常應該只用於異常的情況下,不該用於正常的控制流 // Horrible abuse of exceptions. Don't ever do this! try { int i = 0; while(true) range[i++].climb(); } catch(ArrayIndexOutOfBoundsException e) {
相關文章
相關標籤/搜索