This class demonstrates how to set Priority : Thread Priority « Thread « Java Tutorial

Java Tutorial
1. Language
2. Data Type
3. Operators
4. Statement Control
5. Class Definition
6. Development
7. Reflection
8. Regular Expressions
9. Collections
10. Thread
11. File
12. Generics
13. I18N
14. Swing
15. Swing Event
16. 2D Graphics
17. SWT
18. SWT 2D Graphics
19. Network
20. Database
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web Services SOA
27. EJB3
28. Spring
29. PDF
30. Email
31. J2ME
32. J2EE Application
33. XML
34. Design Pattern
35. Log
36. Security
37. Apache Common
38. Ant
39. JUnit
Java
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Tutorial » Thread » Thread Priority 
10. 3. 4. This class demonstrates how to set Priority
/*
 * Copyright (c) 2004 David Flanagan.  All rights reserved.
 * This code is from the book Java Examples in a Nutshell, 3nd Edition.
 * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied.
 * You may study, use, and modify it for any non-commercial purpose,
 * including teaching and use in open-source projects.
 * You may distribute it non-commercially as long as you retain this notice.
 * For a commercial use license, or to purchase the book, 
 * please visit http://www.davidflanagan.com/javaexamples3.
 */

/**
 * This class demonstrates the use of threads. The main() method is the initial
 * method invoked by the interpreter. It defines and starts two more threads and
 * the three threads run at the same time. Note that this class extends Thread
 * and overrides its run() method. That method provides the body of one of the
 * threads started by the main() method
 */
public class ThreadDemo extends Thread {
  /**
   * This method overrides the run() method of Thread. It provides the body for
   * this thread.
   */
  public void run() {
    for (int i = 0; i < 5; i++)
      compute();
  }

  /**
   * This main method creates and starts two threads in addition to the initial
   * thread that the interpreter creates to invoke the main() method.
   */
  public static void main(String[] args) {
    // Create the first thread: an instance of this class. Its body is
    // the run() method above
    ThreadDemo thread1 = new ThreadDemo();

    // Create the second thread by passing a Runnable object to the
    // Thread() construtor. The body of this thread is the run() method
    // of the anonymous Runnable object below.
    Thread thread2 = new Thread(new Runnable() {
      public void run() {
        for (int i = 0; i < 5; i++)
          compute();
      }
    });

    // Set the priorities of these two threads, if any are specified
    if (args.length >= 1)
      thread1.setPriority(Integer.parseInt(args[0]));
    if (args.length >= 2)
      thread2.setPriority(Integer.parseInt(args[1]));

    // Start the two threads running
    thread1.start();
    thread2.start();

    // This main() method is run by the initial thread created by the
    // Java interpreter. Now that thread does some stuff, too.
    for (int i = 0; i < 5; i++)
      compute();

    // We could wait for the threads to stop running with these lines
    // But they aren't necessary here, so we don't bother.
    // try {
    // thread1.join();
    // thread2.join();
    // } catch (InterruptedException e) {}

    // The Java VM exits only when the main() method returns, and when all
    // threads stop running (except for daemon threads--see setDaemon()).
  }

  // ThreadLocal objects respresent a value accessed with get() and set().
  // But they maintain a different value for each thread. This object keeps
  // track of how many times each thread has called compute().
  static ThreadLocal numcalls = new ThreadLocal();

  /** This is the dummy method our threads all call */
  static synchronized void compute() {
    // Figure out how many times we've been called by the current thread
    Integer n = (Integernumcalls.get();
    if (n == null)
      n = new Integer(1);
    else
      n = new Integer(n.intValue() 1);
    numcalls.set(n);

    // Display the name of the thread, and the number of times called
    System.out.println(Thread.currentThread().getName() ": " + n);

    // Do a long computation, simulating a "compute-bound" thread
    for (int i = 0, j = 0; i < 1000000; i++)
      j += i;

    // Alternatively, we can simulate a thread subject to network or I/O
    // delays by causing it to sleep for a random amount of time:
    try {
      // Stop running for a random number of milliseconds
      Thread.sleep((int) (Math.random() 100 1));
    catch (InterruptedException e) {
    }

    // Each thread politely offers the other threads a chance to run.
    // This is important so that a compute-bound thread does not "starve"
    // other threads of equal priority.
    Thread.yield();
  }
}
10. 3. Thread Priority
10. 3. 1. Change Thread Priority
10. 3. 2. Demonstrate thread priorities.
10. 3. 3. Minimum and Maximum Priority Threads
10. 3. 4. This class demonstrates how to set Priority
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.