像下面这样,当try\catch和方法内都有return语句时,为什么会报错public int test(){ try{ return 1; }catch(){ return 2 ; } return 3;} 查看完整描述