This week's book giveaway is in the Programmer Certification forum.
We're giving away four copies of OCP Oracle Certified Professional Java SE 21 Developer (Exam 1Z0-830) Java SE 17 Developer (Exam 1Z0-829) Programmer’s Guide and have Khalid Mughal and Vasily Strelnikov on-line!
See this thread for details.
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Iterator in Generics

 
Ranch Hand
Posts: 423
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, Could you please let me know the differences between Line 9, 10, 11 and 12
 
Bartender
Posts: 2700
IntelliJ IDE Opera
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What do you think the differences are?
 
Harikrishna Gorrepati
Ranch Hand
Posts: 423
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Here is my understanding.
1. iterator() method of Set interface returns Iterator interface.
API is : Iterator<E> iterator();
2. As per API, entrySet() returns Set<Map.Entry<K, V>>
API is : Set<Map.Entry<K, V>> entrySet();
My questions are


Wouter Oet wrote:What do you think the differences are?

 
Wouter Oet
Bartender
Posts: 2700
IntelliJ IDE Opera
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Harikrishna Gorrepati wrote:Difference between Map.Entry<Integer, String> and Entry<Integer, String>


There is no difference between Map.Entry<Integer, String> and Entry<Integer, String>. It's the same class. It is valid syntax because you imported Map.Entry.

Harikrishna Gorrepati wrote:Difference between Iterator<Entry<Integer, String>> and Iterator<Map.Entry> ?


Well the first iterators next method will return a Entry<Integer, String> and the second will return a Entry (non-generic).
 
reply
    Bookmark Topic Watch Topic
  • New Topic