|
-
Heavy math routines and separate threads?
I have a number of heavy math/cpu usage routines and gather it would be good to make them separate threads so things like JProgressBar and other stuff will work correctly.
Is this all I need to do to make them runnable in their own threads?
final Runnable HM = new Runnable()
{
public void run()
{
heavy_math(x, y, z);
}
};
Is there a general method I could call before and after a heavy math routine that would do the same thing?
Is it possible that the threads will get out of sync?
I haven't gotten a handle on this thread stuff yet so I must ask dumb questions.
RON C
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks