在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)
...否?
答案 0 :(得分:0)
// 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