Why is foreach implementing the IEnumerable interface instead of using the IEnumerator interface directly

Source: Internet
Author: User

In. NET, to be traversed by foreach, the target object implements the IEnumerable or Ienumerable<t> interface, which has a method, GetEnumerator (), returns a IEnumerator interface, This interface defines methods such as next (), such as:

 Public class garge:ienumerable{      public  IEnumerator getenumerator      {             return  New  A ();       }        Internal class A:ienumerator      {            // implement Next () etc        }}   
View Code

If foreach only needs to implement the IEnumerator interface, then our class must implement its own methods in the interface, so the common set is also implemented, then our custom class to implement can use foreach traversal, we must inherit those common collection objects, Or in the method where we implement the IEnumerator interface, the corresponding method of the collection is called. As you can see, if you set up. NET, it can be a great headache for people.

And like. NET is designed today, because commonly used collection objects, usually implement the IEnumerable interface, we want to implement in our custom class can be traversed with foreach, only need to invoke the GetEnumerator () method of the collection object.

Why is foreach implementing the IEnumerable interface instead of using the IEnumerator interface directly

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.