Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
401 views
in Technique[技术] by (71.8m points)

multithreading - Is Java thread id unique across multiple thread pools?

I have multiple thread pools running each with 4 threads. Each thread locks some common resource based on a unique ID they provide. I am using Thread.currentThread().getId() as unique ID to lock and release resources.

I read in Thread class that thread ID is just a long number that is incremented and allocated, also it may be reused once a thread is terminated. But it does not mention anything regarding its behavior in thread pools.

Is the thread ID guaranteed to be unique among threads that are part of different thread pools?

question from:https://stackoverflow.com/questions/66057480/is-java-thread-id-unique-across-multiple-thread-pools

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Thread ID is unique; but you need to beware that once the thread terminates JVM may reuse the thread ID.

https://docs.oracle.com/javase/8/docs/api/java/lang/Thread.html#getId--


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...