java 为何程序没有输出这个些文字?
packagecom.lzw;publicclassSS{staticintcount(intx,inty)throwsException{if(x==0)newExce...
package com.lzw;
public class SS{
static int count(int x,int y) throws Exception{
if(x==0)
new Exception();
return x*y;
}
public static void main(String[] args) {
try{
int s =count(0,3);
}catch(Exception j){
System.out.println("尼玛"); //为何程序没有输出这个些文字? 还有我将尼玛换为s,想将上面的s在这里输出,为什么会提示错误?
}
System.out.println("s");
}
} 展开
public class SS{
static int count(int x,int y) throws Exception{
if(x==0)
new Exception();
return x*y;
}
public static void main(String[] args) {
try{
int s =count(0,3);
}catch(Exception j){
System.out.println("尼玛"); //为何程序没有输出这个些文字? 还有我将尼玛换为s,想将上面的s在这里输出,为什么会提示错误?
}
System.out.println("s");
}
} 展开
2013-04-11
展开全部
1、
if(x==0)
throw new Exception();
2、变量的作用范围,s只在try{}内有效。
if(x==0)
throw new Exception();
2、变量的作用范围,s只在try{}内有效。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询