Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 480 Bytes

computergold.md

File metadata and controls

12 lines (9 loc) · 480 Bytes

计算机黄金--- 计算机里的小技巧

  • 如何判断系统是32位或者是64位
const IS64  = 32 << (^uint(0) >> 63) // 判断是否是64位平台。// 这样就可以照顾是32和64位系统了。
//使用这么个常量,可以很好的解决问题。
  • 在godoc中也就是其实是gofmt中的一些小技巧
  1. 使用/*ff*/这种题头的注释才会出现在godoc.org的题头 ///是不行的

  2. 使用 Func ExampleSomthing 才会有那种example