Never Miss a Release Again – Your VIP Torrent Destination!
https://www.SceneTime.com

Bodner J. Learning Go. An Idiomatic Approach..Real-world Go Programming 2ed 2024

Download!Download this torrent!

Bodner J. Learning Go. An Idiomatic Approach..Real-world Go Programming 2ed 2024

To start this P2P download, you have to install a BitTorrent client like qBittorrent

Category: Other
Total size: 4.74 MB
Added: 2025-03-10 23:38:46

Share ratio: 14 seeders, 2 leechers
Info Hash: 051E96B477AE2A6DA5CCADCB045FDF3C49C346ED
Last updated: 15.7 hours ago

Description:

Textbook in PDF format Go has rapidly become the preferred language for building web services. Plenty of tutorials are available to teach Go's syntax to developers with experience in other programming languages, but tutorials aren't enough. They don't teach Go's idioms, so developers end up recreating patterns that don't make sense in a Go context. This practical guide provides the essential background you need to write clear and idiomatic Go. No matter your level of experience, you'll learn how to think like a Go developer. Author Jon Bodner introduces the design patterns experienced Go developers have adopted and explores the rationale for using them. This updated edition also shows you how Go's generics support fits into the language. While most of Go’s features are found in other languages, Go makes different tradeoffs, so programs written in it have a different structure. Learning Go starts by looking at how to set up a Go development environment, and then covers variables, types, control structures, and functions. If you are tempted to skip over this material, resist the urge and take a look. It is often the details that make your Go code idiomatic. Some of what seems obvious at first glance might actually be subtly surprising when you think about it in depth. This book helps you: • Write idiomatic code in Go and design a Go project • Understand the reasons behind Go's design decisions • Set up a Go development environment for a solo developer or team • Learn how and when to use reflection, unsafe, and cgo • Discover how Go's features allow the language to run efficiently • Know which Go features you should use sparingly or not at all • Use Go's tools to improve performance, optimize memory usage, and reduce garbage collection • Learn how to use Go's advanced development tools Preface Setting Up Your Go Environment Predeclared Types and Declarations Composite Types Blocks, Shadows, and Control Structures Functions Pointers Types, Methods, and Interfaces Generics Errors Modules, Packages, and Imports Go Tooling Concurrency in Go The Standard Library The Context Writing Tests Here Be Dragons: Reflect, Unsafe, and Cgo