@Override
public void run() {
    Thread thread = Thread.currentThread();//?
    while (!thread.isInterrupted()) {
        System.out.println(thread.getName());
        try {
            Thread.sleep(100);
        } catch (InterruptedException e) {
            break;
        }
    }
}