Home Java javaTutorial Java Example - View Thread Priority

Java Example - View Thread Priority

Jan 20, 2017 am 11:28 AM

The following example demonstrates how to use the getThreadId() method to obtain the thread id:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

/*

 author by w3cschool.cc

 Main.java

 */public class Main extends Object {

   private static Runnable makeRunnable() {

      Runnable r = new Runnable() {

         public void run() {

            for (int i = 0; i < 5; i++) {

               Thread t = Thread.currentThread();

               System.out.println("in run() - priority="

               + t.getPriority()+ ", name=" + t.getName());

               try {

                  Thread.sleep(2000);

               }

               catch (InterruptedException x) {

               }

            }

         }

      };

      return r;

   }

   public static void main(String[] args) {

      System.out.println("in main() - Thread.currentThread().getPriority()=" + Thread.currentThread().getPriority());

      System.out.println("in main() - Thread.currentThread().getName()="+ Thread.currentThread().getName());

      Thread threadA = new Thread(makeRunnable(), "threadA");

      threadA.start();

      try {

         Thread.sleep(3000);

      }

      catch (InterruptedException x) {

      }

      System.out.println("in main() - threadA.getPriority()="+ threadA.getPriority());

   }}

Copy after login

The output result of running the above code is:

1

2

3

4

5

6

7

8

in main() - Thread.currentThread().getPriority()=5

in main() - Thread.currentThread().getName()=main

in run() - priority=5, name=threadA

in run() - priority=5, name=threadA

in main() - threadA.getPriority()=5

in run() - priority=5, name=threadA

in run() - priority=5, name=threadA

in run() - priority=5, name=threadA

Copy after login

The above is the Java example - View thread priority For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Square Root in Java Square Root in Java Aug 30, 2024 pm 04:26 PM

Square Root in Java

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Perfect Number in Java

Random Number Generator in Java Random Number Generator in Java Aug 30, 2024 pm 04:27 PM

Random Number Generator in Java

Armstrong Number in Java Armstrong Number in Java Aug 30, 2024 pm 04:26 PM

Armstrong Number in Java

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Weka in Java

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Smith Number in Java

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

Java Spring Interview Questions

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Break or return from Java 8 stream forEach?

See all articles