//定义一个方法获取用户输入数字
public int getNum(){
//需要捕获异常的代码
try{
Scanner s=new Scanner(System.in);
int w=s.nextInt();
}catch(Exception e){
System.out.println("请输入一个整数!");
}
我需要返回w值,可是放在哪里都报错,需要怎么返回w呢?
相关分类