我偶然發(fā)現(xiàn)了一個(gè)讀取文本文件并對(duì)其進(jìn)行分析的代碼庫(kù)呐粘。我對(duì)異常的使用方式有點(diǎn)困惑。單獨(dú)的班級(jí)AppFileReaderException
那extends
已定義異常劫侧,其中擴(kuò)展類僅返回異常的錯(cuò)誤消息萌踱。此外,功能getSymbol()
兼用throws和try and catch block
槽地。這個(gè)error()
函數(shù)也有異常處理程序迁沫,這可能導(dǎo)致嵌套異常!在基本的嘗試和捕獲應(yīng)該足夠的情況下捌蚊,執(zhí)行這樣的異常處理有什么好處嗎集畅?是否有任何理由擴(kuò)展異常類,將兩者結(jié)合在一起缅糟?throws
和try-catch
街區(qū)挺智?這些是過(guò)度殺戮還是有充分的理由有這樣的結(jié)構(gòu)?
package AppName;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.LineNumberReader;
public class AppFileReader {
//
public char getSymbol() throws AppFileReaderException {
try {
//do something
} catch (Exception e) {
error("IO Error: " + fileName + "@" + currentLineNumber);
}
return somechar;
}
public void error(String errorMsg) throws AppFileReaderException {
throw new AppFileReaderException(errorMsg);
}
public AppFileReader(String fileName) throws FileNotFoundException {
reader = new LineNumberReader(new FileReader(fileName));
this.fileName = fileName;
}
}
類的擴(kuò)展類窗宦。AppFileReaderException
如下:
package AppName;
public class AppFileReaderException extends Exception {
public AppFileReaderException(String msg)
{
super(msg);
}
}
首先赦颇,error()
方法(不是函數(shù)!)沒(méi)有任何處理赴涵。它只是拋出一個(gè)異常與給定的消息媒怯。
在調(diào)用方法時(shí),創(chuàng)建自己的異常類可能很有用髓窜;因此扇苞,您可以執(zhí)行以下操作
public void methodThatCallsLibrary() {
try {
doSomething();
new AppFileReader().getSymbol();
doOtherSomething();
} catch (AppFileReaderException afre) {
// handling specific to appFileReader
} catch (Exception e) {
// handling related to the rest of the code.
}
}
也就是說(shuō),這里的系統(tǒng)有點(diǎn)奇怪。通過(guò)在error()
方法時(shí)杨拐,異常的堆棧跟蹤對(duì)于引發(fā)異常的所有可能位置都是相同的祈餐。而且,看起來(lái)它只是掩蓋了IOException哄陶,所以我可能會(huì)轉(zhuǎn)發(fā)IOException本身(如果不是帆阳,則在最終拋出的異常中包含嵌套的異常,以提供更好的調(diào)試信息)屋吨。