>" operator in C++?

After reading Hidden Features and Dark Corners of C++/STL on comp.lang.c++.moderated , I was completely surprised that the following snippet compiled and worked in both Visual Studio 2008 and G++ 4.4.

Here's the code:

#include <stdio.h>
int main()
{
    int x = 10;
    while (x --> 0) // x goes to 0
    {
        printf("%d ", x);
    }
}

I'd assume this is C, since it works in GCC as well. Where is this defined in the standard, and where has it come from?


--> is not an operator. It is in fact two separate operators, -- and > .

The conditional's code decrements x , while returning x 's original (not decremented) value, and then compares the original value with 0 using the > operator.

To better understand, the statement could be written as follows:

while( (x--) > 0 )

Or for something completely different... x slides to 0

while (x --
            
             
              
               > 0)
     printf("%d ", x);

Not so mathematical, but... every picture paints a thousand words. ...


That's a very complicated operator, so even ISO/IEC JTC1 (Joint Technical Committee 1) placed its description in two different parts of the C++ Standard.

Joking aside, they are two different operators: -- and > described respectively in §5.2.6/2 and §5.9 of the C++03 Standard.

链接地址: http://www.djcxy.com/p/20.html

上一篇: 如何检查一个字符串是否包含JavaScript中的子字符串?

下一篇: >“在C ++中的运算符?