I looked into the code, everything is int -- the parameter passed to CountDownLatch constructor is int, the variable in Sync is int, the return type of Sync.getCount() is int. But CountDownLatch.getCount() returns a long? Wondering why.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

I don't know if you will find a sufficient answer to that question unless someone who designed that API answers, but it does say it is for "debugging and testing".

public long getCount() {...} // just for debugging and testing
link|improve this answer
yep...In multithread env, this value is not reliable. I ask this questing just wondering why using long... Thanks! – DeepNightTwo Sep 3 '11 at 2:43
feedback

Futureproofing?

Just because CountDownLatch(int) is the only existing constructor, that doesn't mean you couldn't add CountDownLatch(long) in Java 8, if anyone ever comes up with a use for that kind of thing.

The value is only indicative, not reliable, anyway.

link|improve this answer
feedback

I would guess it's because the int is being used to store an unsigned int, counting from 0 to 2**32-1. Although you can store an unsigned int in an int, when doing calculations with it, it is much easier to promote the value to a long, which can accommodate that range quite naturally.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.