What is faster (x < 0) or (x == -1)?

前端 未结 12 2223
栀梦
栀梦 2021-02-01 03:00

Variable x is int with possible values: -1, 0, 1, 2, 3. Which expression will be faster (in CPU ticks):

1. (x < 0)
2. (x == -1)
         


        
12条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-01 03:43

    It depends on the architecture, but the x == -1 is more error-prone. x < 0 is the way to go.

提交回复
热议问题