package com.gxx.threads.study.test7; /** * 测试类-测试interrupt、isInterrupted、interrupted * @author Gxx */ public class Test { /** * main方法 * @param args */ public static void main(String[] args) { System.out.println("main 开始"); MyThread thread = new MyThread(); thread.start(); System.out.println("main 结束"); } }