如何在 C# 8 中使用 Index 和 Range

开发 后端
C# 8 中有几个比较好玩的新特性,比如下面的这两个:System.Index 和 System.Range,分别对应着索引和切片操作,这篇文章将会讨论这两个类的使用。

[[377601]]

本文转载自微信公众号「 码农读书」,作者 码农读书 。转载本文请联系 码农读书公众号。

C# 8 中有几个比较好玩的新特性,比如下面的这两个:System.Index 和 System.Range,分别对应着索引和切片操作,这篇文章将会讨论这两个类的使用。

System.Index 和 System.Range 结构体

可以用它们在运行时对集合进行 index 和 slice,下面就是 System.Index 结构体的定义。

  1. namespace System 
  2.     public readonly struct Index 
  3.     { 
  4.         public Index(int value, bool fromEnd); 
  5.     } 

然后就是 System.Range 结构体的定义。

  1. namespace System 
  2.     public readonly struct Range 
  3.     { 
  4.         public Range(System.Index start, System.Index end); 
  5.         public static Range StartAt(System.Index start); 
  6.         public static Range EndAt(System.Index end); 
  7.         public static Range All { get; } 
  8.     } 

使用 System.Index 从尾部向前对集合进行索引

在 C# 8.0 之前没有任何方式可以从集合的尾部向前进行索引,现在你可以使用 ^ 操作符实现对集合的从后往前索引,如下代码所示:

  1. System.Index operator ^(int fromEnd); 

接下来用一个例子来理解该操作符的使用,考虑下面的string数组。

  1. string[] cities = { "Kolkata""Hyderabad""Bangalore""London""Moscow""London""New York" }; 

接下来的代码片段展示了如何使用 ^ 运算符来获取 cities 集合的最后一个元素。

  1. var city = cities[^1]; 
  2. Console.WriteLine("The selected city is: " + city); 

下面是完整的可供参考的代码:

  1. public static void Main(string[] args) 
  2.         { 
  3.             string[] cities = { "Kolkata""Hyderabad""Bangalore""London""Moscow""London""New York" }; 
  4.  
  5.             var city = cities[^1]; 
  6.             Console.WriteLine("The selected city is: " + city); 
  7.  
  8.             Console.ReadLine(); 
  9.         } 

使用 System.Range 来提取子序列

你可以使用 System.Range 从 array 或者 span 类型上提取子集合,下面的代码展示了如何使用 range 和 index 来提取 string 的最后六个字符。

  1. class Program 
  2.    { 
  3.        public static void Main(string[] args) 
  4.        { 
  5.            string str = "Hello World!"
  6.            Console.WriteLine(str[^6..]); 
  7.  
  8.            Console.ReadLine(); 
  9.        } 
  10.    } 

接下来是一个如何从 array 上提取子集合的例子。

  1. public static void Main(string[] args) 
  2.         { 
  3.             int[] integers = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; 
  4.             var slice = integers[1..5]; 
  5.  
  6.             foreach (int i in slice) 
  7.             { 
  8.                 Console.WriteLine(i); 
  9.             } 
  10.  
  11.             Console.ReadLine(); 
  12.         } 

从图中可以看出,输出的数字为 1,2,3,4,即表示是一个 [) 的区间。

在 C#8 之前没有这样非常语义化的方式对集合进行 index 和 range,现在不一样了,你可以使用 ^ 和 .. 这两个语法糖,让你的代码更加干净,可读,易维护。

译文链接:https://www.infoworld.com/article/3532284/how-to-use-indices-and-ranges-in-csharp-80.html

 

责任编辑:武晓燕 来源: 码农读书
相关推荐

2021-02-01 12:36:59

C# Channels存储

2021-01-18 05:18:18

C# 8模式C# 7

2021-01-19 05:30:55

C# 8异步流IEnumerable

2021-01-28 05:14:40

C#接口签名

2020-12-31 07:31:10

C# 反射数据

2021-03-07 16:37:52

C#应用程序

2021-11-25 00:04:16

C# 插值字符串

2009-08-04 10:29:06

在C#中使用存储过程

2018-08-03 08:37:31

设计模式IT项目GDPR

2009-08-25 17:21:31

C#索引

2023-10-18 16:30:50

2015-01-27 09:16:46

DaaSDRaaS灾难恢复

2020-11-30 11:55:07

Docker命令Linux

2019-09-16 19:00:48

Linux变量

2014-07-02 09:47:06

SwiftCocoaPods

2024-09-06 11:34:15

RustAI语言

2020-04-09 10:18:51

Bash循环Linux

2021-03-09 07:27:40

Kafka开源分布式

2022-05-17 08:25:10

TypeScript接口前端

2022-06-23 08:00:53

PythonDateTime模块
点赞
收藏

51CTO技术栈公众号