Тёмный

Implementing IEnumerable 

Coding Tutorials
Подписаться 14 тыс.
Просмотров 11 тыс.
50% 1

Coding Tutorial: The C# foreach loop works on any standard collection, but what do we need to do to make it work on collections we've written for ourselves?
Source code available at: github.com/JasperKent/Impleme...

Наука

Опубликовано:

 

4 июн 2020

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 42   
@CodingTutorialsAreGo
@CodingTutorialsAreGo 4 года назад
Anything else you want to know? Just ask. Download the source code at github.com/JasperKent/Implementing-IEnumerable Keep up to date by subscribing: ru-vid.com/show-UCqWQzlUDdllnLmtgfSgYTCA
@theoceandragongaming
@theoceandragongaming 8 месяцев назад
That some in depth explanation. I never got that before.
@MankritQuantum
@MankritQuantum 11 месяцев назад
brilliant video.Must see and try if Enumerable is giving you any issue
@mrsajjad30
@mrsajjad30 Год назад
I highly admire your level of understanding with the topic and what a beautiful way to present all those concepts in a precise way. Thank you so much for making and sharing this gold with the community.
@williamturns1647
@williamturns1647 Год назад
Tne most complete explanation of the IEnumerable interface on the internet!
@johnyw1049
@johnyw1049 2 года назад
Mr Kent You are amazing . I never thought I could find such a video anywhere . TY
@andreivarga8440
@andreivarga8440 Год назад
Very good explanations, keep up the good work!
@oblivion3799
@oblivion3799 3 года назад
Best of video about ienum ... You cover all things about it ... Thank you so much
@lukasmodry196
@lukasmodry196 Год назад
Safed my day thnx mate.
@kmietek09
@kmietek09 3 года назад
Thank you very much sir, that was reaaallly helpful!
@ddr1706
@ddr1706 2 года назад
Dope tutorial. Thanks man
@ThebroNight1
@ThebroNight1 3 года назад
I was expecting a KFC promotion.
@tosinmorufakinyemi6882
@tosinmorufakinyemi6882 3 года назад
good insight into the Ienumerable,. thank you sir
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 года назад
My pleasure.
@0i0l0o
@0i0l0o Год назад
Beautiful.
@paulofernandoee
@paulofernandoee 2 года назад
Great content, thanks!
@leosilva0411
@leosilva0411 3 года назад
Nice video! Thank you!
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 года назад
Glad you liked it!
@mistervoldemort7540
@mistervoldemort7540 Год назад
Thanks a lot
@phantastik3389
@phantastik3389 3 года назад
Wonderful!
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 года назад
Cheers! :)
@olegsuprun7590
@olegsuprun7590 3 года назад
Great info, one question, is it possible to apply to enums? Or apply this pattern to a class with no backing collection, but be able to enumerate through its fields? For example i have a class with a lot of const string fields(100+), and i want to be able to enumerate them.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 года назад
There are ways to do both of those, but they are a bit tricky, so I'll do another video rather than try to explain here. If all goes to plan, I'll post it next Thursday.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 года назад
Actually, I realized that I've already done this for enums here: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-X975bFJvTfY.html. The class of strings is a bit different, so I'll put together a video for that.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 года назад
The new video is up now: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-jkdHqGRJBU4.html
@randomname6444
@randomname6444 4 месяца назад
that seems like so much work for something so basic. having an extra class in there (bookenumerator) just for that is really unsatisfying. and then the historic non-generic version. i just want to provide the next element and eventually reset and it ends in all this boilerplate and clutter. is there no simplistic solution to this simple functionality?
@CodingTutorialsAreGo
@CodingTutorialsAreGo 4 месяца назад
You hardly ever need to do this. In most cases you just expose the enumerator of the private collection. I've never written an enumerator for myself in commercial code.
@randomname6444
@randomname6444 4 месяца назад
@@CodingTutorialsAreGolet me just say I'm amazed at your reply speed, thumbs up is well deserved, thank you for your work. I have a class with an array of lists at its center (my attempt at a custom hashmap). I implemented an indexer for the class and now my plan was to implement ienumerable. that would probably be one of those cases where i would have to write my own enumerator, no?
@dennisnaiden4747
@dennisnaiden4747 3 года назад
So using: " _somevariable.Count " does not iterate via IEnumerable under the hood ? If "_somevariable.Count " does not iterate fully in first place, why i couldnt set .Count as condition in a for-loop and be same memory efficient ? Im new to C#.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 года назад
Good question. For a collection which has a Count property, then writing a regular for-loop is not really any different in terms of functionality or efficiency from writing a foreach-loop. However, the foreach-loop syntax tends to be easier (once you're used to it). Plus, the foreach-loop works on any collection that implements IEnumerable, whereas the for-loop has the additional requirement of having a Count.
@prophy6680
@prophy6680 3 года назад
Can i just make the list public so i can acces it in the foreach loop ?
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 года назад
Good question. The problem with making the list public would be (depending on circumstances) that you give the client code *too* much access. They'd to able to add to it as well as merely read it. One alternative is to give them public access but only through the IReadonlyCollection interface, which does as the name suggests.
@alex-dk2rj
@alex-dk2rj 3 года назад
@@CodingTutorialsAreGobut to me accessing books by Libray[idx] doesn’t make sense. Realistically, a library could have many properties like name, location, hours, employees, etc.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 года назад
Fair point. I think regarding a library as a collection of books is a reasonable default, but you're right; it could equally be regarded as a collection of Employees. There are various ways round that, but my instinct would be to use interfaces, so class Library : IEnumerable, IEnumerable {...} and then use explicit interface implementation to distinguish the two. If you want to use and indexer, you'd have to find another interface that includes the indexer, but indexers are so rarely used, I doubt it's worth the bother. You get ElementAt() for free as an extension to IEnumerable.
@youtischia
@youtischia 2 года назад
Nice video. But why do we need Ienumerable at all ? All the work is done by Ienumerator. Ienumerable does not do anything other return Ienumerator.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 2 года назад
To an extent, you are right. foreach does not require the collection to implement IEnumerable, merely to have a method GetEnumerator which returns an IEnumerator. But more generally in C#, it is not enough for an object to have a method, it must declare in a standardized way that it has the method - and that's done through an interface. Thus IEnumerable declares that a class has GetEnumerator without the need for any more detailed checks.
@youtischia
@youtischia 2 года назад
@@CodingTutorialsAreGo Isnt this an unnecessary hoop to jump thru ? Since the object in your example uses a list, why doesnt the compiler make our lives easy and just realise that it already has a getenumerator ? Just because the list is in an oject shouldnt matter. The information is already there. If someone wanted to define a new one for their new container all well and good. Couldnt it all be "under the hood".
@CodingTutorialsAreGo
@CodingTutorialsAreGo 2 года назад
@@youtischia It could be done like that, but it's not the way languages like C# go. The problem would be that if you just happened to write a method called GetEnumerator that was nothing to do with this feature (unlikely in this case, but highly possible with interfaces in general) then the system would pick it up anyway. The idea is that the developer declares the behaviour they want, the compiler doesn't assume it.
@WaahaidIWKY
@WaahaidIWKY 3 года назад
well selling chicken isn't his only hobby
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 года назад
I'd never have imagined that Colonel Sanders would sound like me when he opens his mouth.
@stewiegriffin6503
@stewiegriffin6503 2 года назад
you are very confusing, because u jumping from one thing to onother
@CodingTutorialsAreGo
@CodingTutorialsAreGo 2 года назад
Sorry.
Далее
C# Covariance
17:27
Просмотров 7 тыс.
Stackalloc and Spans
30:17
Просмотров 9 тыс.
C# Yield Return: What is it and how does it work?
15:09
IEnumerable 🆚 IEnumerator Interfaces in C#
34:06
Просмотров 27 тыс.
C# Value Types and Reference Types
32:49
Просмотров 4,6 тыс.
How IEnumerable can kill your performance in C#
11:02
Просмотров 113 тыс.
Blazor RenderFragment
23:11
Просмотров 1,3 тыс.
How To Create Extension Methods in C#
28:58
Просмотров 51 тыс.
🛑 STOP! SAMSUNG НЕ ПОКУПАТЬ!
1:00
Просмотров 85 тыс.
Main filter..
0:15
Просмотров 12 млн