Summary
The basic paradigm of thread creation in Java, POSIX, and Win32 is to build a new thread entity
that will run a given function [in Java, run()] on a given argument (the implicit this argument).
Threads can wait for each other, kill each other, or simply exit themselves.
Search WWH :
Custom Search
Previous Page
Multithreaded Programming with JAVA - Topic Index
Next Page
Multithreaded Programming with JAVA - Bookmarks
Home