Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: return type of iterator() method

  1. #1
    Junior Member
    Join Date
    Mar 2014
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Angry return type of iterator() method

    what does the iterator() method return???it can't return an object of Iterator as it's an interface...


  2. #2
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: return type of iterator() method

    Welcome to the forum! Please read this topic to learn how to post code correctly and other useful info for new members.

    Refer to the API for the answer to your question.

  3. #3
    Member andbin's Avatar
    Join Date
    Dec 2013
    Location
    Italy
    Posts
    443
    Thanks
    4
    Thanked 122 Times in 114 Posts

    Default Re: return type of iterator() method

    Quote Originally Posted by msnishan View Post
    what does the iterator() method return???it can't return an object of Iterator as it's an interface...
    Exactly! Iterator is an interface. All standard collections in the framework (and in general any type that implements Iterable) return an implementation of Iterator. Typically this implementation is realized with an internal class (typically an "inner class", regular or anonymous) that is generally not visible outside the class of the collection.

    So an iterator() method is typically constructed in a similar way like this:

    public Iterator<E> iterator() {
        return new InternalIteratorImpl();
    }
    or with anonymous inner class:
    public Iterator<E> iterator() {
        return new Iterator() {
            //......implementation of hasNext/next/remove methods .....
        };
    }
    Andrea, www.andbin.netSCJP 5 (91%) – SCWCD 5 (94%)

    Useful links for Java beginnersMy new project Java Examples on Google Code

Similar Threads

  1. return type
    By shahrukh0603 in forum What's Wrong With My Code?
    Replies: 4
    Last Post: June 16th, 2013, 06:38 PM
  2. Error: Invalid method declaration; return type required. Related to JFrames.
    By Pakupakuman in forum What's Wrong With My Code?
    Replies: 5
    Last Post: October 26th, 2012, 05:47 PM
  3. Replies: 4
    Last Post: February 26th, 2012, 05:36 PM
  4. Ending a method that has no return type
    By Blehs in forum Java Theory & Questions
    Replies: 3
    Last Post: August 12th, 2011, 01:56 AM
  5. error: This method must return a result of type int
    By J05HYYY in forum What's Wrong With My Code?
    Replies: 7
    Last Post: January 13th, 2011, 05:26 PM