Go:bytes。重复检查溢出

时间:2017-06-15 05:49:46

标签: go

在bytes.go的Go的bytes字节包412中,有一个条件如下:(https://golang.org/src/bytes/bytes.go?s=10462:10501#L412

len(b)*count/count != len(b)

这显然应该检查溢出但我不明白如何。这是否检查整数的基础数据类型的某些溢出?或者这是实施中的错误? len(b)*count/count应始终为len(b) ...否?

1 个答案:

答案 0 :(得分:0)

It's checking for overflow

// bytes.Repeat(make([]byte, 255), int((^uint(0))/255+1)) panics with the test.
// Without the test, it returns a bad result.

b := make([]byte, 255)
count := int((^uint(0))/255 + 1)

fmt.Println("count:", count)    // prints 16843010 on the playground
fmt.Println("len(b):", len(b))  // prints 255
fmt.Println("count * len(b): ", count*len(b))  // prints 254 
fmt.Println("len(b) * count / count != len(b):", len(b)*count/count != len(b)) // prints false

https://play.golang.org/p/3OQ0vB0WC4