+ 3
What is iterable and iterator?
3 Antworten
+ 3
Hi,iterable is an interface which contains signatures of methods for going through the collection of objects.These objects which must be iterable must implement the interface iterable.Iterator is a specific object which contains a status and internal information about iterable object.Collection of data(objects) is managed by this iterator.
+ 2
+ 1
Thanks,now got it.