首页 > 其他 > 详细

类属性不能写在try{}catch(){}里面

时间:2014-05-02 15:24:26      阅读:447      评论:0      收藏:0      [点我收藏+]

public class cal{
public static void main(String[] args){
calculator ca=new calculator();
byte[] first=new byte[4];byte[] second=new byte[4];
System.out.println("请输入first");
try{
System.in.read(first);
}
catch(Exception e){e.toString();}
String f=new String(first);
System.out.println("请输入second");
try{
System.in.read(second);
}
catch(Exception e){e.toString();}
String s=new String(second);

System.out.print(f+","+s);

}
}

类属性不能写在try{}catch(){}里面,里面的只是临时的,try块结束就没有了,比如f和s要在try{}catch(){}外面定义才能打印

类属性不能写在try{}catch(){}里面,布布扣,bubuko.com

类属性不能写在try{}catch(){}里面

原文:http://www.cnblogs.com/heysong/p/3703718.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!