Thread: Multi-threaded
View Single Post
  #2 (permalink)  
Old 07-21-2006, 05:52 PM
WingedPanther's Avatar   
WingedPanther WingedPanther is online now
Super Moderator
 
Join Date: Jul 2006
Age: 35
Posts: 3,250
Last Blog:
wxWidgets is NOT code ...
Credits: 2,732
Rep Power: 36
WingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to all
Default

A multi-threaded program is a program that allows different pieces of code to run at the same time. The advantage is that you can have a single program working on several things at once. The disadvantage is that you can actually have it run SLOWER than a regular program. You also introduce more potential for bugs, and it is generally harder to debug.

Right now, you should probably worry about getting comfortable with the other features of Java.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum
Programming is a branch of mathematics.
Reply With Quote