以下程序运行的结果为()
发布于 2022-03-03 16:48:37
以下程序运行的结果为()
public class Example extends Thread{ @Override public void run(){ try{ Thread.sleep(1000) }catch (InterruptedException e){ e.printStackTrace() } System.out.print("run") } public static void main(String[] args){ Example example=new Example() example.run() System.out.print("main") } }
登录后免费查看答案
关注者
0
被浏览
46