Files
javaSE-0113/javaSE-day06/src/com/inmind/thread_pool10/MyRunnable.java

14 lines
350 B
Java

package com.inmind.thread_pool10;
public class MyRunnable implements Runnable{
@Override
public void run() {
System.out.println(Thread.currentThread().getName()+"执行了任务");
try {
Thread.sleep(100000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
}
}