在C#中,switch语句的模式匹配在C# 7.0及以上版本中引入。以下是switch语句中常见的模式及其使用方法的示例:
优点: 用于检查对象的运行时类型,使代码更具可读性。
public static string GetObjectType(object obj){ switch (obj) { case int i: return "整数类型"; case string s: return "字符串类型"; case double d: return "双精度浮点数类型"; default: return "其他类型"; }}
优点: 用于匹配对象是否等于某个常量值。
public static string GetDayOfWeekName(DayOfWeek day){ switch (day) { case DayOfWeek.Monday: return "星期一"; case DayOfWeek.Tuesday: return "星期二"; case DayOfWeek.Wednesday: return "星期三"; case DayOfWeek.Thursday: return "星期四"; case DayOfWeek.Friday: return "星期五"; default: return "其他"; }}
优点: 允许将多个模式组合在一起,形成更复杂的匹配条件。
public static string GetInfo(object obj){ switch (obj) { case int i when i > 0: return "正整数"; case int i when i < 0: return "负整数"; case string s when s.Length > 10: return "字符串长度大于10"; default: return "其他"; }}
优点: 用于匹配对象的属性,提供更灵活的条件判断。
public static string GetPersonInfo(object person){ switch (person) { case { Age: > 18, Name: "Alice" }: return "成年人 Alice"; case { Age: > 18, Name: "Bob" }: return "成年人 Bob"; case { Age: <= 18, Name: "Alice" }: return "未成年人 Alice"; default: return "其他"; }}public class Person{ public string Name { get; set; } public int Age { get; set; }}
优点: 允许在模式中引入新的变量,提供更灵活的条件判断。
public static string GetVariablePattern(object obj){ switch (obj) { case int i when i > 0: return $"正整数:{i}"; case int i when i < 0: return $"负整数:{i}"; case string s: return $"字符串:{s}"; default: return "其他"; }}
本文链接:http://www.28at.com/showinfo-26-81733-0.htmlC# Switch 语句进阶:模式匹配详解与实例演示
声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。邮件:2376512515@qq.com