Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
If aTimer
or another high-level API isn't sufficient, you might need to implement your own threads. This section tells you how to do so by customizing a thread'srun
method.The
run
method gives a thread something to do. Its code implements the thread's running behavior. A thread'srun
method can do anything that can be encoded in statements: compute a list of prime numbers, sort some data, perform some animation.The
Thread
class implements a standard thread that, by default, does nothing. The next two sections discuss techniques for providing arun
method for a thread:
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.