在Main方法中启动一个线程t1,该线程输出3行信息:
主线程名
t1的线程名
t1所实现的所有接口。提示:使用System.out.println(Arrays.toString(getClass().getInterfaces()));输出。
在Main方法中启动一个线程t1,该线程输出3行信息:
主线程名
t1的线程名
t1所实现的所有接口。提示:使用System.out.println(Arrays.toString(getClass().getInterfaces()));输出。
该回答引用chatgpt:
public class Test {
public static void main(String[] args) {
Thread t1 = new Thread(() -> {
System.out.println("主线程名: " + Thread.currentThread().getName());
System.out.println("t1的线程名: " + Thread.currentThread().getName());
System.out.println("t1所实现的所有接口: " + Arrays.toString(Thread.currentThread().getClass().getInterfaces()));
});
t1.start();
}
}