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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T06:58:28+00:00 2026-06-04T06:58:28+00:00

this code reads numbers from different steam data , and outputs the whole sum.

  • 0

this code reads numbers from different steam data , and outputs the whole sum. is there something wrong with this code ? how can i fix it ?

public class Thr extends Thread{
static int numThr=100, sum=0;
private int num;
private Thr(int num){this.num =num;}
public void run() {
    int k = IntegerReader.get(num);
    int count=0;
    while(k>0) {
        if(count%numThr==num) sum+=k;
        count++;
        k=IntegerReader.get(num);
    }
}
public static void main(String[] a) throws Exception {
    thr[] st =new thr[numThr];
    for(int i=0; i<numThr; i++) st[i] = new Thr(i);
    for(int i=0; i<numThr; i++) st[i].start();
    System.out.println("sum = "+sum);
}
}
  • 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-04T06:58:29+00:00Added an answer on June 4, 2026 at 6:58 am

    There are numerous things wrong right off the bat.

    1. Sum is being shared between multiple threads and incremented in multiple threads meaning that you can get inconsistent values since incrementing a value isn’t an atomic operation.

      The easiest fix for this is change the declaration of sum to:
      private static AtomicInteger sum = new AtomicInteger(0);

      and add to it this way:
      sum.getAndAdd(k)

    2. “numThr” is shared between multiple threads and read by multiple threads. Since numThr is not final, synchronized or volatile there isn’t any guarantee that other threads will see that its value has been initialized. numThr should be declared as private static final int numThr=100

    3. Your System.out.println("sum = "+sum); is going to be printed before your threads have finished executing. You need to “join” on your threads (that is, wait for them to complete) before printing sum. Add: for(int i=0; i<numThr; i++) st[i].join(); before your sysout.

    I think you should read up on the Java Memory Model and concurrency in Java.
    Here is a basic tutorial, but you really need a book on the subject:
    http://docs.oracle.com/javase/tutorial/essential/concurrency/

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

Sidebar

Related Questions

I currently have this code which reads the first field in a database record
this is part of my code which reads an http response. It's supposed to
I'm using this code to read the connection string from my app.config file but
Does play automatically cache data? I'm trying to read this code that someone else
This code is supposed to read postfix problems from a file and and write
I can read XLS file with this code : string path =@c:\r\1.xlsx; OleDbConnection MyConnection
I'm using the OleDB DataReader to get data from my excel files (but this
I am writing a Google App Engine (Java) application that reads data from a
On document ready I run this code: jQuery(document).ready(function(){ jQuery('#button').click(function() { jQuery('#contact_form').load(/Users/mge/Downloads/jquery-ajax-1/readme.txt); return false; });
take a look at this code: $(document).ready(function() { document.getElementById(sliderId).onmousedown = sliderMouseDown; }); function sliderMouseDown()

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.