gpt4 book ai didi

c# - 在没有设置参数的情况下抛出异常时的行为是什么?

转载 作者:行者123 更新时间:2023-12-02 04:36:44 25 4
gpt4 key购买 nike

如果在设置输出参数值之前抛出异常,然后您尝试访问该参数,C# 中定义的行为是什么?

public void DoSomething(int id, out control)
{
try
{
int results = Call(Id);
control = new CallControl(results);
}
catch(Exception e)
{
throw new Exception("Call failed", e);
}
}

//somewhere else
DoSomething(out Control control)
{
try
{
DoSomething(1, out control);
}
catch()
{
// handle exception
}
}

// later
Control control;
DoSomething(out control)
control.Show();

编译器通常会在设置 out 参数之前提示退出方法。这似乎使它无法保护我免受自己的伤害。

最佳答案

What is the defined behaviour in C# for when an exception is thrown before setting the value of an out parameter, and you then try to access the parameter?

你不能这样做。该变量仍然不会被明确赋值,除非它在方法调用之前被明确赋值。

如果变量在方法调用之前明确赋值,那么它仍然会被明确赋值——但除非方法在抛出异常之前赋值,否则变量的值将保持不变:

class Test
{
static void JustThrow(out int x)
{
throw new Exception();
}

static void Main()
{
int y = 10;
try
{
JustThrow(out y);
}
catch
{
// Ignore
}
Console.WriteLine(y); // Still prints 10
}
}

关于c# - 在没有设置参数的情况下抛出异常时的行为是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21825556/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com