其他分享
首页 > 其他分享> > c – 功能参数的评估顺序

c – 功能参数的评估顺序

作者:互联网

以下操作的结果将打印出来:

x=5; 
printf("%d,%d,%d\n",x,x<<2,x>>2); 

答案:5,20,1

我认为订单尚未定义,但我在许多网站上发现了上面的采访问题.

解决方法:

从C标准:

The order of evaluation of arguments is unspecified. All side effects of argument expression evaluations take effect before the function is entered. The order of evaluation of the postfix expression and the argument expression list is unspecified.

但是,如果参数为x>> = 2且x<< = 2,那么您的示例将只有未定义的行为,因此x被修改.

标签:c-3,c,function,operator-precedence
来源: https://codeday.me/bug/20190926/1820037.html