当前位置: 代码迷 >> J2SE >> 下面这段程序的输出结果是?帮助
  详细解决方案

下面这段程序的输出结果是?帮助

热度:194   发布时间:2016-04-24 01:38:11.0
下面这段程序的输出结果是?在线等帮助
class MyClass
{
static void Main()
{
System.Console.WriteLine(new MyClass().Foo());
}
string Foo()
{
try
{
throw new System.Exception("An Exception ");
System.Console.Write("Inside try ");
}
catch(System.Exception ex )
{
return ex.Message;
}
finally
{
System.Console.Write("Finally ");
}
return "Outside try ";
}
}

------解决方案--------------------
Finally 
An Exception 
  相关解决方案