Ternary operator without the middle expression

扶醉桌前 提交于 2019-11-30 23:54:56

问题


I realized recently that you can use the ternary operator in GCC and clang without a middle (?: or ? : works) and it will insert the first expression into the middle:

// outputs 2
cout << (2 ?: 4);
// outputs 3
cout << (0 ?  : 3);

Where is this in the standard? I looked and didn't see anything about it.


回答1:


It isn't in the standard at all.

What you are observing is a GCC extension: https://gcc.gnu.org/onlinedocs/gcc/Conditionals.html

If you omit it, its value is taken from the first operand prior to contextual conversion to bool.
The extensions value lies in not repeating side-effects and reducing the source-codes size.



来源:https://stackoverflow.com/questions/34559705/ternary-operator-without-the-middle-expression

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!