A common approach to create an Iterator is :
Iterator iter = myarray.iterator();
Can anybody tell me how iter is created without new operator?
I know Iterator is an interface, so who implements it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you look inside the implementation of
iterator(), there’ll be anewinside there, somewhere. For example, this is theiterator()method from OpenJDK’sArrayList:In turn,
Itrrefers to a private inner class that implements theIteratorinterface: