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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:08:36+00:00 2026-05-24T06:08:36+00:00

After looking through tutorial on http://oreilly.com/catalog/expjava/excerpt/index.html below is what I have written. I wanted

  • 0

After looking through tutorial on http://oreilly.com/catalog/expjava/excerpt/index.html below is what I have written. I wanted thread_B to be able to call one of the methods declared in thread_A

thread_A = new Thread(new Worker());
thread_A.start();

thread_B = new Thread(new Communicator(thread_A));
thread_B.start();

Initializing the thread and assigning it to the class variable seems to work fine. However, it does not seem to allow me to use the thread_A’s method.

//in thread_B, 
Thread worker;
public Communicator(Thread worker){
    this.worker = worker;
}
//if I want to call thead_A's method size()
public void run(){
    this.worker.queue.size(); //DOES NOT WORK
}

I just want thread_B to know about thread_A’s queue information. What is a good approach to solve this problem?

  • 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-05-24T06:08:37+00:00Added an answer on May 24, 2026 at 6:08 am

    Do it like this:

    Worker w = new Worker();
    thread_A = new Thread(w);
    thread_B = new Thread(new Communicator(w));
    

    and change Communicator‘s constructor to take a Worker rather than a Thread.

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

Sidebar

Related Questions

I've searched on this, but nothing has what I'm looking for. http://www.mail-archive.com/pygtk@daa.com.au/msg10529.html -- Nobody
After looking through some sites (eg https://www.owasp.org/index.php/Main_Page ) I found no EXPLICIT mention of
Right now I'm using a JTable for what I'm doing. After looking through the
So, I'm looking through a java library (JScience) after someone here thoughfully pointed me
After looking around (for not terribly long I have to admit) I wonder if
I have a query that is dynamically built after looking up a field list
PROBLEM SOLVED!! I just found my mistakes, after looking through the debugger over and
After looking through the docs on App Engine and the StringListProperty or the ListProperty
I've been looking through the Java API, but have had no luck in working
after looking through a lot of similar questions on SO, I still can't iterate

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.