package com.test;
import java.io.IOException;
import java.lang.Exception;
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
try
{
new Test().test1(5);
}catch(IOException e1)
{
System.out.println("111111111111111");
}catch(Exception e2)
{
System.out.println("22222222222222");
}finally
{
System.out.println("333333333333");
}
}
void test1(int i) throws IOException
{
if(i%2!=0)
throw new IOException();
}
}
运行结果为:
111111111111111
333333333333