I am reading the book Java Concurrency in Practice. In a section about java.util.concurrent.Semaphore, the below lines are present in the book. It is a comment about its implementation of "virtual permit" objects
The implementation has no actual permit objects, and
Semaphoredoes not associate dispensed permits with threads, so a permit acquired in one thread can be released from another thread. You can think ofacquireas consuming a permit andreleaseas creating one; aSemaphoreis not limited to the number of permits it was created with.
Can somebody explain this? I am having trouble understanding this. If we create a pool of fixed size, we create a fixed number of "permits". From the above statement, it looks like the "permits" can keep growing. Why is it designed this way?