本帖最后由 呆呆呆 于 2013-12-15 10:14 编辑
- <P>public static void start()</P>
- <P>{
- 02 System.out.println("Java Exception interivew question Answers for Programmers");
- 03 }
- 04
- 05 public static void main(String args[]) </P>
- <P>{
- 06 try</P>
- <P>{
- 07 start();
- 08 }</P>
- <P>catch(IOException e)</P>
- <P>{
- 09 ioe.printStackTrace();
- 10 }
- 11 }
- </P>
复制代码 这段java异常代码有什么错误呢?求解答
|