考虑以下伪代码(语言不可知):
int f(reference int y) {
y++;
return 2;
}
int v = 1;
v += f(v);
当功能f
在评估y
时更改v
(v += f(v)
)时,v
的原始值“冻结”并更改为v
“丢失了”?
v += f(v); // Compute the address of v (l-value)
// Evaluate v (1)
// Execute f(v), which returns 2
// Store 1 + 2
printf(v); // 3