Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Performance of Threads

  1. #1
    Junior Member
    Join Date
    Mar 2014
    Posts
    12
    My Mood
    Worried
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Performance of Threads

    How do threads affect performance of an implementation?


  2. #2
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: Performance of Threads

    Impossible to answer for many reasons. Some number of threads will have no noticeable effect until eventually some number of ACTIVE threads will. The number of threads from no impact to some impact will vary widely depending on many factors.

    On the other hand, an application run entirely on one heavily-loaded thread may impact the application's performance, and the mitigation may be to add threads that do some of the work in the background.

Similar Threads

  1. Performance issue
    By itsurraja in forum What's Wrong With My Code?
    Replies: 13
    Last Post: August 20th, 2013, 05:50 AM
  2. Exceptions : Is there any performance overhead ?
    By Bineeth & Neethu in forum Member Introductions
    Replies: 1
    Last Post: January 17th, 2013, 11:16 AM
  3. Will inheritance affect performance?
    By IHeartProgramming in forum Object Oriented Programming
    Replies: 1
    Last Post: October 12th, 2012, 01:50 PM
  4. CPU Performance Software.
    By Mr.777 in forum Java Theory & Questions
    Replies: 11
    Last Post: September 30th, 2011, 01:10 AM
  5. Replies: 1
    Last Post: May 13th, 2008, 08:08 AM