06 其他方法

2021-10-23 05:26:53 字數 1044 閱讀 6689

1、isalive()

執行緒是否存活

system.out.

println

(thread.

currentthread()

.getname()

+"存活:"

+thread.

currentthread()

.isalive()

);

2、setname()

給執行緒起名字

myinfo mi =

newmyinfo()

;thread t =

newthread

(mi);t.

setname

("我的執行緒"

);

3、getname()

獲取執行緒的名字

myinfo mi =

newmyinfo()

;thread t =

newthread

(mi,

"我的執行緒");

system.out.

println

(t.getname()

);// 我的執行緒

4、currentthread()

獲取當前正在執行的執行緒物件,也就是獲取自己本身,這是乙個靜態方法,寫在哪個執行緒中就獲取哪個執行緒

示例:

package com.tsymq.thread.threadmore;

public

class

otherfunction

catch

(interruptedexception e)

system.out.

println

(t.getname()

+"存活:"

+ t.

isalive()

);}}

class

myinfo

implements

runnable

}

jQuery其他方法

1.jquery拷貝物件 深拷貝 深拷貝把裡面的資料完全複製乙份給目標物件 會另開闢乙個內心空間 如果裡面有不衝突的屬性,會合併到一起。2.多庫共存 jquery使用 作為識別符號,隨著jquery的流行,其他js庫也會使用 作為識別符號,這樣一起使用會引起衝突。使jquery和其他的js庫不存在衝...

selenium 其他方法

coding utf 8 from selenium import webdriver import time from selenium.webdriver.common.keys import keys driver webdriver.chrome driver.get driver.maxi...

軟體測試其他方法

4.黑盒測試 黑盒測試,英文是black box testing。又稱功能測試或者資料驅動測試。黑盒測試是根據軟體的規格對軟體進行的測試,這類測試不考慮軟體內部的運作原理,因此軟體對使用者來說就像乙個黑盒子。軟體測試人員以使用者的角度,通過各種輸入和觀察軟體的各種輸出結果來發現軟體存在的缺陷,而不關...