這是我的代碼這裏使用了什麼「throws」子句,如果不使用,會怎樣?
static void tryit() throws Exception
{
System.out.println(10/0);
}
public static void main(String[] args)
{
try {
tryit();
} catch (Exception e) {
System.out.println("Exception caught in main");
}
}
這裏我是什麼徘徊,在這種代碼throws Exception
究竟是什麼1號線?
即使我沒有使用還我得到了相同的輸出
輸出:異常夾在主
凡會有效嗎?這個代碼有必要嗎?
感謝ü傢伙..有各種各樣的回答..特別感謝@Maroun更多信息 –