下列程序中带有注释(1、2、3、4)的代码错误的是( )Class E{
Public static void main( String args[ ]){
Int n = 0,m= 0,t =1000;
Try{ m= Integer. parseInt( "8888");//1
N= Integer. parseInt( "ab89");//2
T=Integer. parseInt( "1289");//3
}
Catch(Exceptiom e){}
Catch(NumberFormatException e){}//4
}
}