C#开关情况:哪个属性为空?

发布于 2025-01-21 05:42:19 字数 1447 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

残花月 2025-01-28 05:42:19

不,开关语句/表达式是关于评估单个表达式,然后针对多个值/模式进行测试。听起来您想评估多个表达式,对每个表达式进行检查,以相同的值(NULL)检查。

在不知道更多细节的情况下(例如,如果多个属性为null,您是否真的想执行多种方法),很难推荐特定模式,但是switch> switch几乎可以肯定并不适合。

这只是可能的 ,模式匹配实际上允许这样做:

switch (x)
{
    case MyType { Property1: null }:
        Foo1();
        break;
    case MyType { Property2: null }:
        Foo2();
        break;
    // ...
}

...但是与惯用的C#相去甚远,我真的不会做。

No, switch statements/expressions are about evaluating a single expression, then testing it against multiple values/patterns. It sounds like you want to evaluate multiple expressions, checking each against the same value (null).

Without knowing more details (like whether or not you'd actually want to execute multiple methods if multiple properties are null) it's hard to recommend a specific pattern, but switch almost certainly isn't a good fit.

It's just possible that pattern matching would actually allow this:

switch (x)
{
    case MyType { Property1: null }:
        Foo1();
        break;
    case MyType { Property2: null }:
        Foo2();
        break;
    // ...
}

... but that's so far from idiomatic C# that I really wouldn't do it.

玩套路吗 2025-01-28 05:42:19

您可以使用开关案例来检查空值,但是它必须在每个单独的属性上,但是对于Switch语句,您可以执行:

switch(property1)
{
    case null:
        //do something
        break;
    default:
        //something else
        break;
}

You are able to use a switch case for checking null values, but it would have to be on each individual property, but for a switch statement you can do:

switch(property1)
{
    case null:
        //do something
        break;
    default:
        //something else
        break;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文