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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T10:29:24+00:00 2026-06-12T10:29:24+00:00

I have the following code but it’s output is not what I expected: public

  • 0

I have the following code but it’s output is not what I expected:

public class ThreadManager {
    public static void main(String[] args) {
        Resource sharedResource = new Resource();
        new Thread(new MyThread(sharedResource)).start();
        new Thread(new MyThread(sharedResource)).start();
    }
}

class MyThread implements Runnable{
    Resource rs = null;
    public MyThread(Resource param) {
        this.rs = param;
    }
    @Override
    public void run() {
        this.rs.add(Thread.currentThread().getName());
        System.out.println(this.rs.str);
    }
}

class Resource{
    StringBuilder str = new StringBuilder();
    public void add(String text){
        str.append(text);
    }
}

output is :

Thread-0Thread-1
Thread-0Thread-1

but how…

here if thread 0 is executed first then output should be

Thread-0
Thread-0Thread-1

but here issue is the thread-1 in the first line of output.

  • 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-12T10:29:25+00:00Added an answer on June 12, 2026 at 10:29 am

    here if thread 0 is executed first then output

    What makes you think that just because you start thread 0 first, it will get to the add method call first? And even if one thread does get to the add call first, that doesn’t mean it will reach the next statement (System.out.println) before the other thread has had a chance to call add. It looks like that’s the situation here:

    • Thread0 calls add
    • Thread1 calls add
    • Thread0 calls System.out.println(this.rs.str)
    • Thread1 calls System.out.println(this.rs.str)

    (That’s a little bit hand-wavy, in that those aren’t atomic operations, but it’s a possible flow.)

    Imagine your two threads are athletes on a running track – the order in which you start them isn’t necessarily the same as the order in which they cross the finish line.

    Also note that StringBuilder isn’t designed to be safe for access from multiple threads.

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

Sidebar

Related Questions

I have following code snippet but I am getting wrong output. class Program {
I have the following code but I'm not a big fan of reg exp
I have the following code but the FB.login gives a FB is not defined
I have the following code but can't render color as expected. When I render
I have the following code but it seems to not connect, just wondering whether
I have following code. Parent Class: class Parent{ void a() { if(// some logic
I have the following code but it does not seem to be creating a
I have the following code but it doesnt seem to work: <td align=center style=padding-bottom:52.5px>
I have the following code but the lon/lat seems to be returning null; package
I have the following code but I am unsure how I would adjust it

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.