I am just looking for a reasonable answear how implementation of

java.util.Iterator 

is coming under State Design Pattern

EDIT

Please Refer the below Link

Examples of GoF Design Patterns

link|improve this question

72% accept rate
1  
I think, that you should take a look on this answer. – Oleg Kuznetsov Jul 21 '11 at 10:02
feedback

2 Answers

That, I am not sure. As far as I know, its an implementation of Iterator Design Pattern.

However, it can, wrongly, be said that it uses State Pattern, as calling next() affects the state of the Iterator object. But, IMO, its not really a State Pattern implementation, as it doesn't change the base object on which operation has to be executed. Wikipedia is having a fine Java example of State Pattern.

link|improve this answer
feedback

To quote from the GoF book:

State: Allow an object to alter its behaviour when its internal state changes. The object will appear to change its class.

This definitely does not sound like an Iterator. Neither are these two patterns mentioned as related in the book, btw.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.