メイン メソッド内で Object インスタンスを作成し、それを整数変数に割り当てます。例外がスローされたら、try catch を使用して処理し、catch 句でメッセージを出力します。どうすればいいのかわかりません。私はこれをしました:
public class Ch7LU1Ex4{
public static void main(String argv[]) {
try{
Object o = new Integer(10);
int b = (Integer) o;
}catch(Exception e){
System.out.print("Exception caught");
}
}
}