zoukankan      html  css  js  c++  java
  • go 格言

    转自: http://go-proverbs.github.io/

    Simple, Poetic, Pithy

    Don't communicate by sharing memory, share memory by communicating.

    Concurrency is not parallelism.

    Channels orchestrate; mutexes serialize.

    The bigger the interface, the weaker the abstraction.

    Make the zero value useful.

    interface{} says nothing.

    Gofmt's style is no one's favorite, yet gofmt is everyone's favorite.

    A little copying is better than a little dependency.

    Syscall must always be guarded with build tags.

    Cgo must always be guarded with build tags.

    Cgo is not Go.

    With the unsafe package there are no guarantees.

    Clear is better than clever.

    Reflection is never clear.

    Errors are values.

    Don't just check errors, handle them gracefully.

    Design the architecture, name the components, document the details.

    Documentation is for users.

    Don't panic.

  • 相关阅读:
    Mac 国内安装homebrew办法
    字符串方法及注释
    文件的操作
    集合
    Mac下CVS文件编码转换
    字符串格式化
    postman常用断言的一些内置方法
    get与post区别
    pygame知识点(持续更新)
    记录第一次使用
  • 原文地址:https://www.cnblogs.com/leoncfor/p/5000657.html
Copyright © 2011-2022 走看看