进阶day06-Thread和Runnable的区别

This commit is contained in:
2026-03-07 13:55:42 +08:00
parent c70570200c
commit 530da7f279
4 changed files with 16 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
package com.inmind.thread07;
public class MyThread extends Thread{
public MyThread(String name) {
super(name);
}