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

  • Home
  • SEARCH
  • 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 8199005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T06:04:56+00:00 2026-06-07T06:04:56+00:00

I am not sure whether such code is safe or not. I need to

  • 0

I am not sure whether such code is safe or not. I need to read a name from the DB, and I need to use, say 10 threads, each one take a name, then inside the run it calls a function that needs this name as an argument.

Is 10 threads a suitable number for pc running Intel core i7 with 8GB RAM ?? How can I know the acceptable number of threads I can create? Is this code correct and safe?

I find in Dietel book that they create new thread before the Executor. They add line like: PrintTask task1 = new PrintTask( "thread1" );

check: http://www.deitel.com/articles/java_tutorials/20051126/JavaMultithreading_Tutorial_Part4.html) , but find the below method (without the new statement) in: http://www.vogella.com/articles/JavaConcurrency/article.html

In other word, should I create them before the loop? Two references use different methods and I’m confused. Which code is correct, this:

        ExecutorService Executor = Executors.newFixedThreadPool(10);

        while(resultSet.next()) 
           {
              name=resultSet.getString("hname");
              MyRunnable worker = new  MyRunnable(name);

               Executor.execute( worker );
               Counter++;
        }


     Executor.shutdown();
     System.out.println("thread shutdown");

// Wait until all threads are finish
while (! Executor.isTerminated()) {

}
System.out.println("Finished all threads");

OR

MyRunnable task1 = new MyRunnable(name );
MyRunnable task2 = new MyRunnable(name );
MyRunnable task3 = new MyRunnable(name );
MyRunnable task4 = new MyRunnable(name );
MyRunnable task5 = new MyRunnable(name );
MyRunnable task6 = new MyRunnable(name );
MyRunnable task7 = new MyRunnable(name );
MyRunnable task8 = new MyRunnable(name );
MyRunnable task9 = new MyRunnable(name );
MyRunnable task10 = new MyRunnable(name );


        ExecutorService Executor = Executors.newFixedThreadPool(10);

        while(resultSet.next()) 
           {
              name=resultSet.getString("hname");
              MyRunnable worker = new  MyRunnable(name);

               Executor.execute( worker );
               Counter++;
        }


     Executor.shutdown();
     System.out.println("thread shutdown");

// Wait until all threads are finish
while (! Executor.isTerminated()) {

}
System.out.println("Finished all threads");

Also, in the constructor of MyRunnable class that implements run, do i have to start the thread explicitly or does the Executor.execute( worker ) enough in this case.

  • 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-07T06:04:59+00:00Added an answer on June 7, 2026 at 6:04 am

    I would have rewritten it like that:

    ExecutorService executor = Executors.newFixedThreadPool(10);
    
    while(resultSet.next())
    {
        name=resultSet.getString("hname");
        MyRunnable worker = new  MyRunnable(name);
        executor.submit(worker);
        counter++;
    }
    
    
    executor.shutdown();
    System.out.println("thread shutdown");
    
    executor.awaitTermination(60, TimeUnit.SECONDS);
    System.out.println("Finished all threads");
    

    variable in lower case, awaitTermination instead of a loop.

    The number of threads to use depends on several factors: the machine, the number of tasks to execute, the “size” of the task, etc.

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

Sidebar

Related Questions

Not sure whether this should be asked here or on another site such as
Not sure whether its a duplicate or not-why my left and right border are
I am not sure whether this only happens to me. Basically if I have
I'm not sure whether to post it here or at ServerFault. Anyway, I'm trying
I am not sure whether it has been disscussed before or not but I
I'm not sure whether or not this is the appropriate way of doing this,
I'm not sure whether this question belongs on StackOverflow or SuperUser, but here goes
I am not sure whether I am asking this with the right words, I
I am not sure whether distinct is the right word for this. I have
I'm not sure whether these are programming questions, but I'm sure lots of new

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.