What the operator `<

This question already has an answer here:

  • What is the “-->” operator in C++? 21 answers

  • <-- is not an operator, it is < and -- written without space. Just to make it clear, I rewrite the code like this-

    while(0 < --i)
    

    First the value of i is decreased, and then compared if it is greater than 0 .

    Similar question was asked here.

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

    上一篇: 任何人都可以解释大O与大欧米茄vs Big Theta?

    下一篇: 什么运营商`<