授权转载: Tony Bai 原文连接: https://tonybai.com/2015/11/17/tcp-programming-in-golang/ Golang的主要 设计目标之一就是面向大规模后端服务程序,网络通信这块是服务端 程序必不可少也是至关重要的一部分.在日常应用中,我们也可以看到Go中的net以及其subdirectories下的包均是“高频+刚需”,而TCP socket则是网络编程的主流,即便您没有直接使用到net中有关TCP Socket方面的接口,但net/http
Error handling and Go go语言错误处理 12 July 2011 Introduction If you have written any Go code you have probably encountered the built-in error type. Go code uses error values to indicate an abnormal state. For example, the os.Openfunction returns a non-ni
The Go Programming Language Specification go语言规范 Version of May 9, 2018 Introduction 介绍 Notation 符号 Source code representation 源代码表示形式 Characters 字符 Letters and digits 字母和数字 Lexical elements 词法元素 Comments 评论 Tokens 令 牌 Semicolons 分号 Identifiers 标识符 K
Effective Go 高效的go语言 Introduction 介绍 Examples 例子 Formatting 格式 Commentary 评论 Names 名字 Package names 包名 Getters Interface names 接口名 MixedCaps Semicolons 分号 Control structures 控制结构/循环结构 If Redeclaration and reassignment For Switch Type switch Function