91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

如何在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
鹤岗市| 新竹县| 于都县| 卢龙县| 江油市| 麦盖提县| 丹棱县| 辽阳县| 老河口市| 上思县| 卢龙县| 郯城县| 慈利县| 兰溪市| 眉山市| 松桃| 嵊泗县| 横山县| 洛南县| 龙里县| 博乐市| 南郑县| 晋宁县| 辰溪县| 开封市| 望城县| 前郭尔| 时尚| 江孜县| 东乌珠穆沁旗| 江油市| 江源县| 保亭| 溧水县| 丰台区| 砚山县| 沅陵县| 西丰县| 孟村| 海城市| 沙洋县|