目录1、迭代器查看Foreach执行中间语言foreach实现过程总结实现迭代器最常用的方法分布类概述及其使用索引器概述及声明索引器在类中的使用索引器在接口中的使用小结及任务实施1、
方法1:
打开新添加的外部工具:
方法2
foreach语句是微软提供的支持内置迭代器的语句法糖,编译foreach语句后生产的代码与使用迭代器的代码完全一致
调用GetEnumerator()方法获得迭代器——调用IEnumerator.MoveNext()——调用IEnumerator.Current()
Foreach循环迭代可枚举类型的过程:
1、通过调用IEnumerator接口和IEnumerator的引用
2、IEnuerator调用MoveNext方法
3) ①True:IEnumerator的Current属性获取对象的应用,用于foreach循环
②false 结束
4、重复2、3步知道MoveNext返回false
迭代器可用于方法、属性访问器或其他代码块,使用户能够在类或结构中支持Foreach迭代,而不必实现整个IEnumerable接口,只需要一个类型化的方法GetEnumerator(),不需要处理设计模式
```csharp
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections; // 需要引用的命名空间
namespace 实现迭代器常用的方法
{
class Program
{
public static IEnumerable SimpleDemo()
{
yield return "string1";
yield return "string2";
yield return "string3";
yield break; //运行到此处就终止了迭代
yield return "string4";
yield return "string5";
}
//月份迭代
public class Months : IEnumerable //为了使用Foreach遍历,要保证是可枚举类型的
{
string[] month = { "Jan", "Feb", "Mar", "Apr", "May", "June", "July", "Aug", "Nov", "Dec" };
public IEnumerator GetEnumerator()
{
for(int i=0;i<month.Length;i++)
{
yield return month[i];
}
}
}
static void Main(string[] args)
{
foreach (string item in SimpleDemo())
{
Console.WriteLine(item);
}
Months mon = new Months();
foreach(string m in mon)
{
Console.WriteLine(m);
}
Console.ReadKey();
}
}
}
分布类定义:将类的定义拆分到两个或多个资源文件中。每个源文件包含类定义的一部分,编译应用程序时将把所有部分组合起来,这就是分布类。
应用场合(partial):
vs在创建windows窗体和WEB服务包装代码等时都是用此方法。开发人员无须编译vs所创建的文件,即可创建使用这些类的代码。
实现过程:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _3_分部类
{
//利用分部类实现阶乘与幂指数运算
partial class arithmetic //阶乘
{
public int factorial(int num)
{
int factorialval = 1;
for(int i = num; i>0;i--)
{
factorialval *= i;
}
return factorialval;
}
}
partial class arithmetic //幂指数运算
{
public int power(int num, int index)
{
int result = 1;
for (int i = 0; i < index; i++)
{
result *= num;
}
return result;
}
}
class Program
{
static void Main(string[] args)
{
arithmetic a = new arithmetic();
int num = 5;
Console.WriteLine("调用分部类的第一部分——阶乘计算结果:{0}", a.factorial(num));
int index = 3;
Console.WriteLine("调用分部类的第二部分——幂指函数计算结果:{0}", a.power(num, index));
Console.ReadKey();
}
}
}
注意事项 :
可以通过小标访问数组中的元素的方式就是索引器
索引器允许类或结构的实例按照与数组相同的方式进行索引。索引器的声明和属性的声明非常相似,不同的是他们的访问器采用参数——索引器的声明除了包括索引关键字(index)的声明外,还包括this关键字。使得向数组那样对对象使用下标,并提供了通过索引方式方便第访问类的数据信息的方法。(属性的作用就是保护字段,对字段的取值和赋值进行限定)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _4_索引器概述及声明
{
//属性声明
public class Clerk
{
private string name; //字段声明,专供类内部使用,所以声明为私有的
public string Name //属性为外部事务,可以供其他类进行交流使用,所以声明为公共的
{
get { return name; }
set { name = value; }
}
private char gender;
public char Gender
{
get
{
if (gender != '男' && gender != '女') gender = '男';
return gender;
}
set
{
gender = value;
}
}
//索引器声明1
//private int[] myint = new int[10];
//public int this[int index]
//{
// get { return myint[index]; } //单独存在为只读
// set { myint[index] = value; } //单独存在为只写 ,两个同时存在为读写
//}
//声明一个虚拟的索引器
//private int[] myint2 = new int[10];
//public virtual int this[int index2]
//{
// get { return myint2[index2]; }
// set { myint2[index2] = value; }
//}
// 声明一个外部索引器
public extern int this[int index]
{ get; set; }
}
// 抽象索引器声明
abstract class indexEaxmple
{
public abstract int this[int index]
{
get;
set;
}
}
class Program
{
static void Main(string[] args)
{
}
}
}
实例:1、访问类实例(容量为10的整型数组为例)2、访问类成员(以星期演示)
using System;
namespace _5_索引器在类中的使用
{
public class indexText //访问类的实例
{
private int[] array = new int[10];
public int this[int index]
{
get
{
if (index < 0 || index > 10) return 0;
else return array[index];
}
set
{
if (index >= 0 && index < 10) array[index] = value;
}
}
}
public class weekIndex //访问类成员
{
string[] week = { "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日" };
private int getDay(string weekText)
{
int i = 0;
foreach(string day in week)
{
if (day == weekText) return i+1;
i++;
}
return -1;
}
public int this[string week]
{
get { return getDay(week); }
}
}
class Program
{
static void Main(string[] args)
{
Console.WriteLine("访问类实例的结果");
indexText Arr = new indexText();
Arr[-5] = 5;
Arr[0] = 15;
Arr[2] = 60;
Arr[11] = 65;
Console.WriteLine("Arr[-5]={0}", Arr[-5]);
Console.WriteLine("Arr[0]={0}", Arr[0]);
Console.WriteLine("Arr[1]={0}", Arr[1]);
Console.WriteLine("Arr[2]={0}", Arr[2]);
Console.WriteLine("Arr[11]={0}", Arr[11]);
Console.WriteLine("访问累成员结果");
weekIndex we = new weekIndex();
Console.WriteLine(we["星期三"]);
Console.WriteLine(we["星期四"]);
Console.WriteLine(we["星期八"]);
Console.WriteLine(we["星期0"]);
Console.ReadKey();
}
}
}
索引器可以作为接口成员来声明,单接口中的索引器声明不包括任何访问修饰符,这是因为接口不包括任何编程程序语句,所以get和set访问器没有程序主题,因此,访问索引器的用途是指示索引器时读写、只读还是只写
using System;
namespace _6_索引器在接口中的使用
{
public interface iTextIndex
{
int this[int index]
{
get;
set;
}
}
class indexText:iTextIndex
{
// 演示容量为10的数组,对实例成员的访问
private int[] array = new int[10];
public int this[int index]
{
get
{
if (index < 0 || index >= 10) return 0;
else return array[index];
}
set
{
if (index > 0 && index < 10) array[index] = value;
}
}
}
class Program
{
static void Main(string[] args)
{
indexText Arr = new indexText();
Arr[-1] = 5;
Arr[4] = 10;
Arr[9] = 20;
Arr[14] = 30;
for(int i=-1;i<15;i=i+5)
{
Console.WriteLine("Arr[{0}]={1}", i, Arr[i]);
}
Console.ReadKey();
}
}
}
索引器实现QQ状态的访问,利用类成员进行访问,得出QQ状态对应的索引值
using System;
namespace 本章小结及任务实施
{
public class QQStateIndex
{
string [] qqState = { "在线", "离线", "忙碌", "Q我", "隐身" };
private int getState(string stateText)
{
int i= 0;
foreach(string stateString in qqState)
{
if (stateString == stateText) return i;
i++;
}
return -1;
}
public int this[string stateString]
{
get { return getState(stateString); }
}
}
class Program
{
static void Main(string[] args)
{
QQStateIndex qs = new QQStateIndex();
Console.WriteLine(qs["在线"]);
Console.WriteLine(qs["忙碌"]);
Console.WriteLine(qs["睡眠"]);
Console.ReadKey();
}
}
}
到此这篇关于C# 迭代器分部类与索引器详情的文章就介绍到这了,更多相关C# 迭代器,索引器内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: C# 迭代器分部类与索引器详情
本文链接: https://lsjlt.com/news/164473.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0