ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Go语言书籍推荐

2022-04-18 10:03:22  阅读:151  来源: 互联网

标签:语言 language 编程 介绍 Go PDF 书籍


附录: 其他书籍的介绍:https://github.com/golang/go/wiki/Books

Go程序设计语言 (圣经)

undefined

作者

艾伦 A.A.多诺万 Kernighan

下载地址

中文版PDF

英文版PDF

在线网页中文版

 

网上介绍

Go语言是谷歌推出的一种全新的C语言风格的编程语言,可以在不损失应用程序性能的情况下降低代码的复杂性,提高编程效率,适合开发大型软件,有望成为主流的编程语言。本书由《C程序设计语言》的作者Kernighan和谷歌公司Go团队合作编写而成,是关于Go语言编程的权威著作。

Go语言程序设计

undefined

作者

Mark Summerfield

下载地址

中文版PDF
英文版PDF

网上介绍

《Go语言程序设计》既是一本实用的Go语言教程,又是一本权威的Go语言参考手册。书中从如何获取和安装Go语言环境,以及如何建立和运行Go程序开始,逐步介绍了Go语言的语法、特性以及一些标准库,内置数据类型、语句和控制结构,然后讲解了如何在Go语言中进行面向对象编程,Go语言的并发特性,如何导入和使用标准库包、自定义包及第三方软件包,提供了评价Go语言、以Go语言思考以及用Go语言编写高性能软件所需的所有知识。  《Go语言程序设计》的目的是通过使用语言本身提供的所有特性以及Go语言标准库中一些最常用的包,向读者介绍如何进行地道的Go语言编程。《Go语言程序设计》自始至终完全从实践的角度出发,每一章提供多个生动的代码示例和专门设计的动手实验,帮助读者快速掌握开发技能。《Go语言程序设计》适合对Go语言感兴趣的各个层次的Go语言程序员阅读和参考。

Go语言学习笔记

undefined

作者

雨痕

下载地址

上卷:语言规范
下卷:源码剖析

网上介绍

作为时下流行的一种系统编程语言,Go 简单易学,性能很好,且支持各类主流平台。已有大量项目采用 Go 编写,这其中就包括 Docker 等明星作品,其开发和执行效率早已被证明。本书经四年多逐步完善,内容覆盖了语言、运行时、性能优化、工具链等各层面知识。且内容经大量读者反馈和校对,没有明显的缺陷和错误。上卷细致解析了语言规范相关细节,便于读者深入理解语言相关功能的使用方法和注意事项。下卷则对运行时源码做出深度剖析,引导读者透彻了解语言功能背后的支持环境和运行体系,诸如内存分配、垃圾回收和并发调度等。本书不适合编程初学入门,可供有实际编程经验或正在使用Go 工作的人群参考

上卷(基于Go 1.6)细致解析语言规范相关细节,下卷(基于Go 1.5.1)则对运行时源码做出深度剖析。

Go语言编程

undefined

作者

许式伟 吕桂华

下载地址

中文版PDF

网上介绍

《Go语言编程》首先概览了Go语言的诞生和发展历程,从面向过程编程特性入手介绍Go语言的基础用法,让有一定C语言基础的读者可以非常迅速地入门并开始上手用Go语言来解决实际问题,之后介绍了Go语言简洁却又无比强大的面向对象编程特性和并发编程能力,至此读者已经可以理解为什么Go语言是为互联网时代而生的语言。
从实用性角度出发,本书还介绍了Go语言标准库和配套工具的用法,包括安全编程、网络编程、工程管理工具等。
对于希望对Go语言有更深入了解的读者,我们也特别组织了一系列进阶话题,包括语言交互性、链接符号、goroutine机理和接口机制等。

Learning Go

undefined

作者

Miek Gieben

下载地址

中文版PDF

网上介绍

这是关于来自Google的Go语言的简介。目标是为这个新的、革命性的语言提供一个指南。

Effective Go

undefined

下载地址

在线英文版
在线中文版
中文版PDF

Go并发编程实战

undefined

作者

郝林

下载地址

中文版PDF

网上介绍

本书全面介绍了Go语言的特点、安装部署环境、工程规范、工具链、语言语法、并发编程模型以及在多个编程实战中的应用,重点阐述了Go语言并发编程模型和机制。本书共分为四个部分,介绍了Go语言编程环境搭建、Go语言基础编程、Go语言并发编程方法及其原理,以及使用Go语言开发的应用系统的案例讲解。
本书适用于有一定计算机编程基础的从业者以及对Go语言编程感兴趣的爱好者,非常适合作为Go语言编程进阶教程。

The Way To Go: A Thorough Introduction To The Go Programming Language

undefined

作者

Ivo Balbaert

下载地址

在线翻译版本
英文版PDF

网上介绍

This book provides the reader with a comprehensive overview of thenew open source programming language Go (in its first stable andmaintained release Go 1) from Google. The language is devised withJava / C#-like syntax so as to feel familiar to the bulk ofprogrammers today, but Go code is much cleaner and simpler to read,thus increasing the productivity of developers. You will see howGo: simplifies programming with slices, maps, structs andinterfaces incorporates functional programming makes error-handlingeasy and secure simplifies concurrent and parallel programming withgoroutines and channels And you will learn how to: make use of Go'sexcellent standard library program Go the idiomatic way usingpatterns and best practices in over 225 working examples and 135exercises This book focuses on the aspects that the reader needs totake part in the coming software revolution using Go.

The Go Programming Language Phrasebook

undefined

作者

David Chisnall

下载地址

英文版PDF

网上介绍

The Go ProgrammingLanguage Phrasebook Essential Go code and idioms for all facets of thedevelopment process This guide gives you the code "phrases" you needto quickly and effectively complete a wide variety of projects with Go, today,smost exciting new programming language. Tested, easy-to-adapt code examplesilluminate every step of Go development, helping you write highly scalable,concurrent software. You,ll master Go-specific idioms for working with strings,collections, arrays, error handling, goroutines, slices, maps, channels,numbers, dates, times, files, networking, web apps, the runtime, and more.Concise and Accessible Easy to carry and easy to use: Ditch all those bulkybooks for one portable pocket guide Flexible and Functional Packed with morethan 100 customizable code snippets: Quickly create solid Go code to solve justabout any problem Register your book at informit.com/register for convenientaccess to downloads, updates, and corrections as they become available.

An Introduction to Programming in Go

undefined

作者

Caleb Doxsey

下载地址

英文版PDF

网上介绍

This book is a short, concise introduction to computer programming using the language Go. Designed by Google, Go is a general purpose programming language with modern features, clean syntax and a robust well-documented common library, making it an ideal language to learn as your first programming language.

Go in Action

undefined

作者

William Kennedy
Brian Ketelsen

下载地址

英文版PDF

网上介绍

Go in Action introduces the Go language, guiding you from inquisitive developer to Go guru. The book begins by introducing the unique features and concepts of Go. Then, you'll get hands-on experience writing real-world applications including websites and network servers, as well as techniques to manipulate and convert data at speeds that will make your friends jealous.

Go Web编程

undefined

作者

谢孟军

下载地址

中文版PDF
在线多语言版

网上介绍

《Go Web编程》介绍如何用Go语言进行Web应用的开发,将Go语言的特性与Web开发实战组合到一起,帮读者成功地构建跨平台的应用程序,节省Go语言开发Web的宝贵时间。有了这些针对真实问题的解决方案放在手边,大多数编程难题都会迎刃而解。
在《Go Web编程》中,读者可以更加方便地找到各种编程问题的解决方案,内容涵盖文本处理、表单处理、Session管理、数据库交互、加/解密、国际化和标准化,以及程序的部署维护等运维方面的知识,最后还介绍了一个快速开发的框架帮助您迅速进入Go语言的Web开发。

Go Web Programming

undefined

作者

Sau Sheong Chang

下载地址

NA

网上介绍

Go Web Programming teaches you how to build web applications in Go using modern design principles. You'll learn how to implement the dependency injection design pattern for writing test doubles, use concurrency in web applications, and create and consume JSON and XML in web services. Along the way, you'll discover how to minimize your dependence on external frameworks, and you'll pick up valuable productivity techniques for testing and deploying your applications.

Go in Practice: Includes 70 Techniques

undefined

作者

Matt Butcher
Matt Farina

下载地址

英文版PDF

网上介绍

Go in Practice guides you through dozens of real-world techniques in key areas. Following a cookbook-style Problem/Solution/Discussion format, this practical handbook builds on the foundational concepts of the Go language and introduces specific strategies you can use in your day-to-day applications. You'll learn techniques for building web services, using Go in the cloud, testing and debugging, routing, network applications, and much more. After finishing this book, you will be ready to build sophisticated cloud-native Go applications.

Introducing Go: Build Reliable, Scalable Programs

undefined

作者

Caleb Doxsey

下载地址

NA

网上介绍

Perfect for beginners familiar with programming basics, this hands-on guide provides an easy introduction to Go, the general-purpose programming language from Google. Author Caleb Doxsey covers the language’s core features with step-by-step instructions and exercises in each chapter to help you practice what you learn.

Go is a general-purpose programming language with a clean syntax and advanced features, including concurrency. This book provides the one-on-one support you need to get started with the language, with short, easily digestible chapters that build on one another. By the time you finish this book, not only will you be able to write real Go programs, you'll be ready to tackle advanced techniques.

 

标签:语言,language,编程,介绍,Go,PDF,书籍
来源: https://www.cnblogs.com/gongxianjin/p/16158357.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有