doujinai2183 2018-12-25 17:41
浏览 35
已采纳

使用uint64的for循环不会停止

Is there an explanation why for loop using uint64 wouldn't stop at 0?

I've tried the same for loop with int and it works as expected.

package main

import (
    "fmt"
)

func main() {
  i := uint64(5)
  for ; i>=uint64(0); i-- {
  fmt.Printf("step %d
", i)
  }
}

I would expect this function to stop at output step 0 but it overflows the int and continues forever with step 18446744073709551615 and so on

  • 写回答

1条回答 默认 最新

  • duanruinong0619 2018-12-25 17:45
    关注

    Your loop continues while i >= 0, but an unsigned integer is always greater than or equal to zero. Unsigned integers cannot be negative so your loop never terminates.

    Try changing i to int64 and see if it behaves differently. :-)

    Best of luck.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突