NSUInteger in reversed loop confusion?

后端 未结 2 527
野性不改
野性不改 2021-01-28 03:59

I wonder if someone can explain something, I setup a loop where I wanted to count backwards from 10 to 0 :

for(NSUInteger index = 10; index >= 0; index--) {
          


        
2条回答
  •  孤街浪徒
    2021-01-28 04:10

    Note that an NSUInteger is always >= 0, by consequence, your loop condition will always be true.

提交回复
热议问题