首页 > 代码库 > 类属性不能写在try{}catch(){}里面
类属性不能写在try{}catch(){}里面
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(){}外面定义才能打印
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。