猿问

C#优雅的方法来检查属性的属性是否为null

在C#中,假设您想在此示例中从PropertyC中提取一个值,并且ObjectA,PropertyA和PropertyB都可以为null。


ObjectA.PropertyA.PropertyB.PropertyC


如何以最少的代码安全地获取PropertyC?


现在,我将检查:


if(ObjectA != null && ObjectA.PropertyA !=null && ObjectA.PropertyA.PropertyB != null)

{

    // safely pull off the value

    int value = objectA.PropertyA.PropertyB.PropertyC;

}

做更多类似这样的事情(伪代码)会很好。


int value = ObjectA.PropertyA.PropertyB ? ObjectA.PropertyA.PropertyB : defaultVal;

可能甚至会因为使用空伙伴运算符而崩溃。


编辑最初,我说我的第二个示例就像js,但是我将其更改为伪代码,因为正确地指出了它在js中不起作用。


拉风的咖菲猫
浏览 1321回答 3
3回答

侃侃尔雅

在C#6中,可以使用Null条件运算符。因此原始测试将是:int? value = objectA?.PropertyA?.PropertyB?.PropertyC;

holdtom

您可以在类中添加方法吗?如果没有,您是否考虑过使用扩展方法?您可以为您的对象类型创建一个扩展方法,称为GetPropC()。例:public static class MyExtensions{    public static int GetPropC(this MyObjectType obj, int defaltValue)    {        if (obj != null && obj.PropertyA != null & obj.PropertyA.PropertyB != null)            return obj.PropertyA.PropertyB.PropertyC;        return defaltValue;    }}用法:int val = ObjectA.GetPropC(0); // will return PropC value, or 0 (defaltValue)顺便说一句,这假设您使用的是.NET 3或更高版本。
随时随地看视频慕课网APP
我要回答