java 多執行緒1

2021-05-31 21:46:14 字數 1458 閱讀 2543

public class threadtest extends thread 

thread.sleep(100);

system.out.println(this.getname()+":"+i);

}catch (interruptedexception e)

}} }

public static void main(string args)

}

部門輸出結果:

thread-0:0

thread-0:1

thread-0:2

thread-0:3

thread-0:4

thread-0:5

thread-0:6

thread-0:7

thread-0:8

thread-0:9

haha

thread-1:0

thread-1:1

thread-1:2

thread-1:3

thread-1:4

thread-1:5

thread-1:6

thread-1:7

thread-1:8

thread-1:9

haha

thread-0:10

thread-0:11

thread-0:12

thread-0:13

thread-0:14

thread-0:15

thread-0:16

thread-0:17

thread-0:18

thread-0:19

haha

thread-1:10

thread-1:11

thread-1:12

thread-1:13

thread-1:14

thread-1:15

thread-1:16

thread-1:17

thread-1:18

thread-1:19

haha

thread-0:20

thread-0:21

thread-0:22

thread-0:23

thread-0:24

thread-0:25

thread-0:26

thread-0:27

thread-0:28

thread-0:29

haha

thread-1:20

thread-1:21

thread-1:22

thread-1:23

thread-1:24

thread-1:25

thread-1:26

thread-1:27

thread-1:28

thread-1:29

haha

Java多執行緒(1)

程序 process 是計算機中的程式關於某資料集合上的一次執行活動,是系統進行資源分配和排程的基本單位,是作業系統結構的基礎。在早期面向程序設計的計算機結構中,程序是程式的基本執行實體 在當代面向執行緒設計的計算機結構中,程序是執行緒的容器。程式是指令 資料及其組織形式的描述,程序是程式的實體。所...

Java 多執行緒1

程序 執行著的應用程式 程序之間的記憶體不是共享的。多執行緒 在單個程序中同時執行多個執行緒完成不同的工作。關於多執行緒 1 程序內併發執行的 段 單核cpu巨集觀上並行,微觀上還是序列 2 執行緒之間共享記憶體 3 主要用於建立靈活相應的桌面程式 4 每個執行著的執行緒對應乙個stack 5 每個...

java多執行緒練習1

5輛汽車過隧道,隧道一次只能通過一輛汽車,每輛汽車通過時間不固定 1 class threaddemo2 227 catch exception e 29 system.out.println 所有車都已經通過隧道了 30 31 3233 使用單個執行緒類實現 34class car extends...