示例#1
0
 Consumer(Shared s) {
   this.s = s;
   l = s.getLock();
 }
示例#2
0
 Producer(Shared s) {
   this.s = s;
   l = s.getLock();
 }