OgetThread()
função é usada para obter o objeto de thread com base no ID de thread especificado.
OgetThread()
função retorna oThread
Objeto com o threadId especificado pelo parâmetro
Thread
Objeto
getThread ((ThreadId)
O parâmetrothreadId
é o ID do objeto do thread. Obtenha o objeto do thread correspondente especificando o parâmetro.
threadId verdade Número
function main() {
var t1 = threading.Thread(function () {
Log("Hello thread1")
})
// The Thread object has a method: id(), which is used to get the thread ID. You can view the section of the document corresponding to the Thread object.
var threadId = t1.id()
var threadName = t1.name()
Log("threadId:", threadId, ", threadName:", threadName)
var t2 = threading.getThread(threadId)
Log(`threadId == t2.id():`, threadId == t2.id(), `, threadName == t2.name():`, threadName == t2.name())
}
Obtenha o objeto de thread especificado atravésthreadId
.
Suporta sistema de backtesting e ambiente de negociação ao vivo.
Se o thread que você quer obter foi executado e liberado, você não pode usarthreading.getThread(threadId)
para obter o objeto do fio do fio.
{@fun/Threads/threading/Thread Thread}, {@fun/Threads/threading/mainThread mainThread}, {@fun/Threads/threading/currentThread currentThread}, {@fun/Threads/threading/Lock Lock}, {@fun/Threads/threading/Condition Condition}, {@fun/Threads/threading/Event Event}, {@fun/Threads/threading/Dict Dict}, {@fun/Threads/threading/pending pending}, {@fun/Threads/threading/eventLoop eventLoop}
Fios principalThread