Go 语言中的海勒姆定律
原文:Abenezer Belachew 最近,我在探索 Go 代码库时偶然发现了一个有趣的注释: “根据海勒姆定律(Hyrum’s law),这文本不可更改。” 1 2 3 4 5 func (e *MaxBytesError) Error() string { // Due to Hyrum's law, this text cannot be changed. // 根据海勒姆定律,这文本不可更改。 return "http: request body too large" } 在此之前,我从未听说过海勒姆定律。 简单搜索后得知,这是一个以 Hyrum Wright……