Thousands of examples at your fingertips!
All classes, methods fields etc. are linked to the API documentation.
All members are listed by frequency of use or alphabetically (see left pane).
Links to examples and utility functions/classes are shown below
Class java.lang.Thread
[api documentation] [ main menu] Search

Links to examples (only one line shown below for each example):
[add your own example]

1 Thread server = new Thread(this);
2 Thread t = new Thread(reaper);
3 Thread thread = new Thread(this);
4 threadBookmarkSaver = new Thread(new LazyBookmarkSaver(time));
5 Thread linkCreator = new Thread(new LinkCreator(), "LinkCreator");
6 t1.start();
7 Thread outThread = new Thread(new InputMonitor("out: ", proc.getInputStream(), out));
8 priority = Thread.currentThread().getPriority() + 1;
9 xmtThread = new Thread(xmtRunnable = new Runnable() {
10 thread = new Thread ( this );
11 runner = new Thread ( this );
12 thread.interrupt();
13 _critiquer = new Thread(this, "CritiquingThread");
14 tx = Thread.currentThread();
15 ClassLoader oldLoader=Thread.currentThread().getContextClassLoader();
16 ClassLoader current = Thread.currentThread().getContextClassLoader();
17 int oldPriority = Thread.currentThread().getPriority();
18 ThreadGroup g = Thread.currentThread().getThreadGroup();
19 ClassLoader originalClassLoader= Thread.currentThread().getContextClassLoader();
20 t.start();

Links to utility classes and functions:

1 rabbit.util.RestartableThread
2 com.protomatter.util.WorkQueueThread
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.