3.2 例外処理

  4.finally節
		  
FileClassA f=new FileClassA();
if (f.open("/tmp/dataA.dat")){
    try{
        MethodB();
    } finally{
        f.close();
    }
}