本帖最后由 牛秦勇 于 2012-3-30 18:28 编辑
大家认为下面程序运行结果是多少?100还是200?
class tryDemo
{
public static void main(String[] args)
{
System.out.println(getValue());
}
public static int getValue()
{
int value = 0;
try
{
value = 100;
return value;
}
finally
{
value = 200;
}
}
}
结果是100,但,为什么呢?求高手指点。
|
|