题型:问答题 标签:程序
题目:
3. 下面程序是否存在问题?如果存在,请指出问题所在,如果不存在,请说明输出结果。
public class Test
{
public static String result="";
public static void f(int i)
{
try
{
if(i=1)
{
throw new Exception("exception message");
}
}catch(Exception e)
{
result+="2";
return;
}finally
{
result+="3";
}
result+="4";
}
public static void main(String[]args)
{
f(0);
f(1);
System.out.println(result);
}
}