Why Is Comparing if an Unsigned Int >= 0 a “Pointless Comparison”?

后端 未结 10 1741
情话喂你
情话喂你 2021-02-12 10:44

I got warning:

Pe186 \"Pointless comparison of unsigned int with zero\"

when I tried to compile the following code:



        
10条回答
  •  无人共我
    2021-02-12 11:02

    You are checking if an unsigned int is equal or greater than 0. Which is always true.

提交回复
热议问题