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 8109697
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T01:29:58+00:00 2026-06-06T01:29:58+00:00

Possible Duplicate: Creating an “object” of an interface I am new to Java. Based

  • 0

Possible Duplicate:
Creating an “object” of an interface

I am new to Java. Based on my understanding:

  • We cannot instantiate an Interface. We can only instantiate a class which implements an interface.
  • The new keyword is used to create an object from a class.

However, when I read the source codes of some Java programs, I found that sometimes an Interface is instantiated. For example:

Example 1:

JButtonObject.addActionListener(new ActionListener()
{
    public void actionPerformed(ActionEvent e)
    {
        //codes
    }
});

Example 2:

SwingUtilities.invokeLater(new Runnable()
{
    public void run()
    {
        //codes
    }
});

In the example at above, ActionListener and Runnable are both Java interface. May I know why they can be instantiated in these codes?

What is the purpose of instantiating an Interface? Refer to this example, it seems that we should create an instance of a class which implement the interface.

  • 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-06T01:30:00+00:00Added an answer on June 6, 2026 at 1:30 am

    That code does not instantiate an interface, but rather an anonymous class which implements ActionListener or Runnable.

    An anonymous class is a local class without a name. An anonymous class
    is defined and instantiated in a single succinct expression using the
    new operator.

    The code is creating an instance of ActionListener anonymously, which means the class does not actually have any name.

    After compiling that class, you can see a class YourClass$1.class in the output. The $1 simply means that class is an anonymous class and the number 1 is generated by the compiler. When you have two anonymous classes, it will have something like YourClass$1.class and YourClass$2.class in the compiled classes.

    See

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

Sidebar

Related Questions

Possible Duplicate: is there any other way of creating an object without using “new”
Possible Duplicate: “new” keyword in Scala Ive noticed that creating certain instances in Scala
Possible Duplicate: Where can I find a web-project “security checklist?” i was just wondering
Possible Duplicate: Creating a new Location object in javascript If the user inputs a
Possible Duplicate: Java - Creating an array of methods In java can i store
Possible Duplicate: Creating a left-arrow button (like UINavigationBar's “back” style) on a UIToolbar I
Possible Duplicate: How to “properly” create a custom object in JavaScript? Sorry if this
Possible Duplicate: In the bash shell, what is “ 2>&1 ”? #echo [+] Creating
Possible Duplicate: Generate unique random numbers in Java I am creating a lottery app
Possible Duplicate: What is the 'new' keyword in JavaScript? creating objects from JS closure:

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.