请告诉我有什么区别信号量用1和0初始化.如下:
public static Semaphore semOne = new Semaphore(1);
和
public static Semaphore semZero = new Semaphore(0);
解决方法
信号量实例的参数是可用的“许可”数.它可以是任何整数,而不仅仅是0或1.
对于semZero,所有acquire()调用都会阻塞,tryAcquire()调用将返回false,直到你执行release()
对于semOne,第一个acquire()调用将成功,其余的将阻塞,直到第一个释放.
这个班有很好的记录here.
Parameters: permits – the initial number of permits available. This value may be negative,in which case releases must occur before any acquires will be granted.