gpt4 book ai didi

c# - 当构造函数使用提供给第一个构造函数的对象调用另一个构造函数时,您可以检查 null 吗?

转载 作者:太空狗 更新时间:2023-10-30 00:59:21 26 4
gpt4 key购买 nike

如果我有一个具有两个构造函数的类,如下所示:

class Foo
{
public Foo(string name)
{...}

public Foo(Bar bar): base(bar.name)
{...}
}

有什么方法可以在我得到空引用异常之前检查 bar 是否为空?

最佳答案

您可以使用static 方法来执行此操作:

class Foo
{
public Foo(string name) {
...
}

public Foo(Bar bar): base(GetName(bar)) {
...
}

static string GetName(Bar bar) {
if(bar == null) {
// or whatever you want ...
throw new ArgumentNullException("bar");
}
return bar.Name;
}
}

关于c# - 当构造函数使用提供给第一个构造函数的对象调用另一个构造函数时,您可以检查 null 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/665705/

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