很久没有碰c/c++了, 近两年都是java为主, 偶尔用一下c/c++
(a<b<c) 这种写法我以前从来没有用过. 今天突然有网友提起来, 我习惯性的在脑海中把其翻译成
(a<b && b<c) 酿成了一些小错误. 我悔过了.
网友给我扔来了c99的标准
§6.5.9 第86页 89) The expression a<b<c is not interpreted as in ordinary mathematics. As the syntax indicates, it
means (a<b)<c; in other words, ‘‘if a is less than b, compare 1 to c; otherwise, compare 0 to c’’.
意思也就是说. (a<b<c) 按照从左到右的方式开始运算
1.( (a<b) < c )
2.a<b ? TRUE : FALSE;
3.所以, 最终表达式运算的是 (1<c) 或者 (0<c)
C语言中. 虽然任何不等于0的数为真. 但是实际在宏定义中 TRUE == 1 FALSE == 0;