假设进程P0和P1可以访问共享变量total(初始化为0)。如果以下进程同时执行,total可能的最小结果是多少?
Suppose that a shared variable total (initialized as 0 ) can be accessed by the process P0 and P1. If the following processes execute concurrently, what is the probable minimum result of total?
P1:
{
int count;
for ( count =1; count <= 50; count++ )
total = total + 1;
}
P2:
{
int count;
for ( count =1; count <= 50; count++ )
total = total + 1;
}
选项
A.1
B.2
C.3
D.50
答案是 B 2 为什么呢
假设进程P0和P1可以访问共享变量total(初始化为0)。total可能的最小结果是多少?
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-