Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8943999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:55:30+00:00 2026-06-15T11:55:30+00:00

I have a question about java syntax. I’ve found sample program. public class Main

  • 0

I have a question about java syntax.
I’ve found sample program.

public class Main {
  public static void main(String[] args) {
    BookShelf bookShelf = new BookShelf(2);
    bookShelf.appendBook(new Book("around 80 Days"));
    bookShelf.appendBook(new Book("trivial solution"));
    Iterator it = bookShelf.iterator();
  }
}

This is compiled with following interface.

public interface Iterator {
  public abstract boolean hasNext();
  public abstract Object next();
}

in this program, is ‘Iterator’ class or type?
If it is class, ‘new’ is needed to create instance like following sentence.

Iterator it = new Iterator();

Otherwise, Is ‘Iterator’ type? Is interface used as type?
thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T11:55:31+00:00Added an answer on June 15, 2026 at 11:55 am

    Iterator is an interface. The most common way for a class to expose an iterator is by implementing Iterable which again is an interface.

    Iterator provides you a mechanism by which you can step through all members in a collection.

    see http://docs.oracle.com/javase/7/docs/api/java/util/Iterator.html for a description of the Iterator.

    see http://docs.oracle.com/javase/7/docs/api/java/lang/Iterable.html For the iterable interface.

    Iterator is a design pattern first mentioned in the GOF Book. (I believe)

    Also please note you can’t create a new iterator just by itself. It does need an implementation to run. It is usually given by a given class (BookShelf) in your example as that class knows how to step through it’s internal structures.

    As it is an interface it cannot be declared using the new operator. However the concrete implementation of it can be.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a question about the syntax of the Java main declaration: public static
Hello i have some question about java. here is my code: public static void
I had a question about Java Class Path variables. If I have multiple jars
I have a question about best practices in Java. I'm writing a class, which
I want to ask a question about Java. I have a user-defined object class,
I have a question about Java Generics. If I define a class like this:
I have a Assignment question about Java Generics. The given class is Product.java. It
hello I have some question about writing class in Java, why this one is
I have a question about public and private classes in Java. For example, if
I have a question about how GC works in Java. Consider the following code:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.