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.
|
feedback
|
|
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".
| |||
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. | |||
|
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. | |||
|
feedback
|