中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何在C#中優雅地處理Optional鏈

c#
小樊
82
2024-09-08 04:24:13
欄目: 編程語言

在 C# 9.0 及以上版本中,可以使用 null 聚合運算符(?.)來優雅地處理 Optional 鏈

public class Address
{
    public string? City { get; set; }
}

public class Person
{
    public Address? Address { get; set; }
}

public class Program
{
    public static void Main()
    {
        Person? person = GetPerson(); // 假設這個方法可能返回 null

        string? cityName = person?.Address?.City;
        
        if (cityName != null)
        {
            Console.WriteLine($"City: {cityName}");
        }
        else
        {
            Console.WriteLine("City information not available.");
        }
    }

    private static Person? GetPerson()
    {
        // 實現獲取 Person 對象的邏輯,可能返回 null
        return new Person { Address = new Address { City = "New York" } };
    }
}

在這個示例中,我們使用了 null 聚合運算符(?.)來優雅地處理 Optional 鏈。當 personAddressCity 為 null 時,整個表達式將返回 null。否則,它將返回城市名稱。通過這種方式,我們可以避免在代碼中顯式檢查每個屬性是否為 null。

0
水富县| 富顺县| 五常市| 梅州市| 周口市| 卢氏县| 西平县| 竹山县| 绥中县| 健康| 兰州市| 乌审旗| 棋牌| 都江堰市| 于都县| 望都县| 乐业县| 合肥市| 乃东县| 富裕县| 万盛区| 库尔勒市| 旌德县| 广州市| 手游| 正镶白旗| 万州区| 万盛区| 宜章县| 淳化县| 巴中市| 临高县| 盐津县| 巴塘县| 九寨沟县| 天等县| 芦溪县| 林口县| 宁蒗| 佛山市| 竹溪县|