摘要: 线程和进程: 一个应用程序启动,会启动一个进程(应用程序运行的载体),然后进程启动多个线程。 使用Thread类创建和控制线程。 Thread thread = new Thread(Test); thread.start(); class Program { public void Test() 阅读全文
posted @ 2022-11-27 17:12 浑浑噩噩一只小迷七 阅读(73) 评论(0) 推荐(0)