If each Philosopher does the following, it can cause
while(true) {
think();
take_fork(i);
take_fork((i+1)%5);
eat();
put_fork(i);
put_fork((i+1)% 5);
}
A. Deadlock
B. Starvation
C. All above
我的问题是,为什么这个会导致 A 跟 B 。 答案是 C。 谢谢大神回答