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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T10:36:45+00:00 2026-06-14T10:36:45+00:00

In below code I have some doubt in following line : btn.addActionListener(this); th= new

  • 0

In below code I have some doubt in following line :

btn.addActionListener(this);
th= new Thread(this);

code :

public class Foo  extends Applet implements  Runnable,ActionListener
{
    Button btn;
    Thread th;
    public void init()
    {
        btn=new Button("Click on me");
        add(btn);
        btn.addActionListener(this);  // pass reference as this
        th=null;
    }
    public void run()
    {
        int i=0;
        while(i++<10)
        {
            try{
                th.sleep(500);
                showStatus(new Integer(i).toString());
            }
            catch(Exception e){}
        }
    }
    public void actionPerformed(ActionEvent e)
    {
        if(th==null)
        {
            th= new Thread(this);  // pass reference as this
            th.start();
        }       
    }
}

in Thread class constructor Thread(Runnable target) Allocates a new Thread object.
We can pass Runnable Target but I have passed this as parameter. I have implemented Runnable interface though it is possible
But again I have passed this as parameter In this case we can pass ActionListener target.
If we pass this as parameter in both the cases how It can get resolved.
I think this reference is targeting to reference of
1. Foo
2. Runnable
3. ActionListener
so how suitable reference is selected for method or constructor?.

  • 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-14T10:36:46+00:00Added an answer on June 14, 2026 at 10:36 am

    You have a IS-A relationship :

    • Foo IS-A Applet
    • Foo IS-A Runnable
    • Foo IS-A ActionListener

    When new object of type Foo is created , Foo will be “selected reference” type. You have to cast to others if you want to have different type (from the selected list).

    As long as Foo IS-A Applet, Runnable and ActionListener, the contract of the methods are fullfiled : btn.addActionListener(this); takes Foo which IS-A ActionListener, th= new Thread(this); takes Foo which IS-A Runnable.

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

Sidebar

Related Questions

I have some doubt on below code #include<stdio.h> int i=6; int main() { int
I have some code below: protected void testConnection(String url) { DefaultHttpClient httpclient = new
I have some code for a MessageBox, but I get a red line below
I have some php code below, where I'm using foreach. <div class=carousel-inner> <?php if(count($items)):
I have some problem with my cfml website. I have used the below code
I have some really funky code. As you can see from the code below
I have some code as shown below: - (IBAction)startButtonPressed:(id)sender { statusText.text = @Processing...; //here
UPDATE - I have fixed some mistakes in the code below and the images
Edit: original question below, but I revise it now that I have some code
I'm wondering about the .childNodes property, I have the code below, and for some

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.