Why Iterator<E> iterator() is put in Collection, AbstractCollection when already in Iterable [duplicate]

StackOverflow https://stackoverflow.com/questions/19211859

  •  30-06-2022
  •  | 
  •  

質問

When Iterator iterator() is put in Iterable interface and this is extended by Collection interface and AbstractCollection interface, why this is again mentioned in Collection/AbstractCollection as no definition is given for this in abstract class.

Please help me to understand what I am missing in this from design perspective

役に立ちましたか?

解決

The iterator() appears in Iterator and Collection as the Javadoc is different. In AbstractCollection it is different again, but doesn't appear to add much value.

他のヒント

Well Iterable is since 1.5 whereas Iterator and Collection are since 1.2. Not sure why AbstractCollection defines it again though, it's javadoc is slightly different though.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top