douliedai4838 2019-08-31 11:44
浏览 215
已采纳

使用数字文字但不使用数字常量的移位运算符出错

I am getting error while doing a shift operation in go with invalid operation: 1 << bucketCntBits (shift count type int, must be unsigned integer) error on trying to declare a literal in go inside main() body Failing literal example: https://play.golang.org/p/EqI-yag5yPp

func main() {
    bucketCntBits := 3 // <---- This doesn't work
    bucketCnt     := 1 << bucketCntBits
    fmt.Println("Hello, playground", bucketCnt)
}

When I declare the shift count as a constant, the shift operator works. Working constant example: https://play.golang.org/p/XRLL4FR8ZEl

const (
    bucketCntBits = 3 // <---- This works
)

func main() {

    bucketCnt     := 1 << bucketCntBits
    fmt.Println("Hello, playground", bucketCnt)
}

Why does the constant work while the literal doesn't for the shift operator?

  • 写回答

3条回答 默认 最新

  • duanjing3656 2019-08-31 13:31
    关注

    Go 1.13 Release Notes (September 2019)

    Changes to the language

    Per the signed shift counts proposal Go 1.13 removes the restriction that a shift count must be unsigned. This change eliminates the need for many artificial uint conversions, solely introduced to satisfy this (now removed) restriction of the << and >> operators.


    invalid operation: 1 << bucketCntBits (shift count type int, must be unsigned integer)
    

    This is no longer an error for Go 1.13 (September 2019) and later.

    Your example,

    package main
    
    import "fmt"
    
    func main() {
        bucketCntBits := 3
        bucketCnt := 1 << bucketCntBits
        fmt.Println(bucketCnt)
    }
    

    Output:

    $ go version
    go version devel +66ff373911 Sat Aug 24 01:11:56 2019 +0000 linux/amd64
    
    $ go run shift.go
    8
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 隐藏系统界面pdf的打印、下载按钮
  • ¥15 MATLAB联合adams仿真卡死如何解决(代码模型无问题)
  • ¥15 基于pso参数优化的LightGBM分类模型
  • ¥15 安装Paddleocr时报错无法解决
  • ¥15 python中transformers可以正常下载,但是没有办法使用pipeline
  • ¥50 分布式追踪trace异常问题
  • ¥15 人在外地出差,速帮一点点
  • ¥15 如何使用canvas在图片上进行如下的标注,以下代码不起作用,如何修改
  • ¥50 vue router 动态路由问题
  • ¥15 关于#.net#的问题:End Function