码迷,mamicode.com
首页 > 其他好文 > 详细

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

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

标签:class   int   string   new   os   read   

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(){}里面

标签:class   int   string   new   os   read   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!