C# 接口类型

PHPz
发布: 2023-09-18 17:17:02
转载
1453 人浏览过

C# 接口类型

接口定义属性、方法和事件,它们是接口的成员。接口仅包含成员的声明。

C# 中的一些接口类型包括。

  • IEnumerable - 所有通用集合的基本接口。

  • IList > - 由数组和列表类型实现的通用接口。

  • IDictionary - 字典集合。

  • IEnumerable 是一个接口,定义了单个方法 GetEnumerator,该方法返回 IEnumerator 接口。

    这适用于对实现 IEnumerable 的集合的只读访问,该集合可与 foreach 语句一起使用。

    这适用于对集合的只读访问。 p>

    下面展示了IEnumerable接口的实现。

    示例

    class Demo : IEnumerable, IEnumerator {
       // IEnumerable method GetEnumerator()
       IEnumerator IEnumerable.GetEnumerator() {
          throw new NotImplementedException();
       }
       public object Current {
          get { throw new NotImplementedException(); }
       }
       // IEnumertor method
       public bool MoveNext() {
          throw new NotImplementedException();
       }
       // IEnumertor method
       public void Reset() {
          throw new NotImplementedException();
       }
    }
    登录后复制

    上面你可以看到IEnumerator的两种方法。

    // IEnumerator method
    public bool MoveNext() {
       throw new NotImplementedException();
    }
    // IEnumertor method
    public void Reset() {
       throw new NotImplementedException();
    }
    登录后复制

    以上是C# 接口类型的详细内容。更多信息请关注PHP中文网其他相关文章!

    来源:tutorialspoint.com
    本站声明
    本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
    热门教程
    更多>
    最新下载
    更多>
    网站特效
    网站源码
    网站素材
    前端模板
    关于我们 免责声明 Sitemap
    PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!