多執行緒類的案例演示

2021-09-24 16:33:50 字數 1473 閱讀 2919

/*

第一步:繼承thread類

第二步:重寫run()方法

第三步: 建立繼承了thread類的物件,呼叫stast

*/public class mytest extends thread

}public static void main(string args)

}

//建立執行緒方式2:實現runnable介面

//1.實現介面

//2.重寫run方法

//3.建立runnbale介面實現

public

class

mytest3

implements

runnable

}public

static

void

main

(string[

] args)

}}

public

class

rase

implements

runnable

system.out.

println

(thread.

currentthread()

.getname()

+"跑了"

+ i +

"步");}

}private

boolean

gameover

(int i)

}

public

class

mytest2

}class

youimplements

marry

}class

wedding

implements

marry

@override

public

void

marry()

private

void

end(

)private

void

sast()

}inte***ce

marry

public

class

test2

}inte***ce

ilike

public

class

test

}}

public

class

test2

implements

runnable

public

static

void

main

(string[

] args)

}

多執行緒案例 Java

1 購票 不安全策略 片段 public class main catch exception e new thread r start new thread r start new thread r start new thread r start 顯示結果 賣出了一張票,還剩下6張票 賣出了一張...

多執行緒死鎖案例

public class threaddeadlock implements runnable public void run else public class lockthread main方法裡測試死鎖案例 threaddeadlock t1 new threaddeadlock true t...

多執行緒賣票案例

火車站有多個售票視窗,這些售票視窗一塊賣100張票,即100張票被多個視窗共享。用執行緒模擬售票視窗 用輸出語句模擬賣出的票。package com.igeek 03 classname ticketdemo description 多執行緒模擬火車站賣票 date 2018年2月4日 下午1 59...