C#Web服务 - 返回然后最后 - 首先发生什么

时间:2013-10-23 21:26:48

标签: c# asp.net .net web-services try-finally

在C#.NET中,我们采用以下示例

[WebMethod]
public int TakeAction()
{
    try {
        //Call method A
        Return 1;
    } catch (Exception e) {
        //Call method B
        Return 0;
    } finally {
        //Call method C
    }
}

现在让我们说方法C是一个长时间运行的过程。

在调用方法C之前,还是在调用/完成方法之后,调用TakeAction的客户端是否会获取返回值?

2 个答案:

答案 0 :(得分:10)

返回值首先评估,然后执行finally块,然后将控制权传递给调用者(带有返回值)。如果finally块将更改返回值的表达式,则此排序很重要。例如:

Console.WriteLine(Foo()); // This prints 10

...

static int Foo()
{
    int x = 10;
    try
    {
        return x;
    }
    finally
    {
        // This executes, but doesn't change the return value
        x = 20;
        // This executes before 10 is written to the console
        // by the caller.
        Console.WriteLine("Before Foo returns");
    }
}

答案 1 :(得分:2)

在离开try块后执行finally块中的任何内容。在您的情况下,它返回1或0然后执行方法c。 有关try-catch-finally的更多信息,请参阅this