Advertisement
jfcmacro

Interna2.java

Mar 26th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. class Interna2 implements Runnable {
  2.     public void run() {
  3.     Thread t = Thread.currentThread();
  4.     t.setPriority(10);
  5.     for (int i = 0; i < 10; i++) {
  6.         System.out.println("Thread: " + t);
  7.     }
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement