Вопрос

In C#.NET, let's take the following example

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

Now let's say method C is a long running process.

Does the client who invokes TakeAction get back the return value, before method C is invoked, or after it is invoked / completed?

Это было полезно?

Решение

The return value is evaluated first, then the finally block executes, then control is passed back to the caller (with the return value). This ordering is important if the expression for the return value would be changed by the finally block. For example:

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");
    }
}

Другие советы

anything in finally block is executed after leaving try block. In your case it either returns 1 or 0 and then executes method c. for more info on try-catch-finally you can refer this

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top