Introducing Go. Build Reliable, Scalable Programs - Helion
ISBN: 978-14-919-4201-7
stron: 124, Format: ebook
Data wydania: 2016-01-07
Księgarnia: Helion
Cena książki: 29,90 zł (poprzednio: 99,67 zł)
Oszczędzasz: 70% (-69,77 zł)
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.
- Jump into Go basics, including data types, variables, and control structures
- Learn complex types, such as slices, functions, structs, and interfaces
- Explore Go’s core library and learn how to create your own package
- Write tests for your code by using the language’s go test program
- Learn how to run programs concurrently with goroutines and channels
- Get suggestions to help you master the craft of programming
Osoby które kupowały "Introducing Go. Build Reliable, Scalable Programs", wybierały także:
- Cisco CCNA 200-301. Kurs video. Administrowanie bezpieczeństwem sieci. Część 3 665,00 zł, (39,90 zł -94%)
- Cisco CCNA 200-301. Kurs video. Administrowanie urządzeniami Cisco. Część 2 665,00 zł, (39,90 zł -94%)
- Cisco CCNA 200-301. Kurs video. Podstawy sieci komputerowych i konfiguracji. Część 1 665,00 zł, (39,90 zł -94%)
- Impact of P2P and Free Distribution on Book Sales 427,14 zł, (29,90 zł -93%)
- Cisco CCNP Enterprise 350-401 ENCOR. Kurs video. Programowanie i automatyzacja sieci 443,33 zł, (39,90 zł -91%)
Spis treści
Introducing Go. Build Reliable, Scalable Programs eBook -- spis treści
- Introduction
- Who Should Read This Book
- Navigating This Book
- Online Resources
- Conventions Used in This Book
- Using Code Examples
- Safari Books Online
- How to Contact Us
- 1. Getting Started
- Machine Setup
- Text Editors
- The Terminal
- Environment
- Go
- Your First Program
- How to Read a Go Program
- Exercises
- Machine Setup
- 2. Types
- Numbers
- Integers
- Floating-Point Numbers
- Example
- Strings
- Booleans
- Exercises
- Numbers
- 3. Variables
- How to Name a Variable
- Scope
- Constants
- Defining Multiple Variables
- An Example Program
- Exercises
- 4. Control Structures
- The for Statement
- The if Statement
- The switch Statement
- Exercises
- 5. Arrays, Slices, and Maps
- Arrays
- Slices
- append
- copy
- Maps
- Exercises
- 6. Functions
- Your Second Function
- Variadic Functions
- Closure
- Recursion
- defer, panic, and recover
- panic and recover
- Pointers
- The * and & operators
- new
- Exercises
- 7. Structs and Interfaces
- Structs
- Initialization
- Fields
- Methods
- Embedded Types
- Interfaces
- Exercises
- Structs
- 8. Packages
- The Core Packages
- Strings
- Input/Output
- Files and Folders
- Errors
- Containers and Sort
- List
- Sort
- Hashes and Cryptography
- Servers
- TCP
- HTTP
- RPC
- Parsing Command-Line Arguments
- Creating Packages
- Documentation
- Exercises
- The Core Packages
- 9. Testing
- Exercises
- 10. Concurrency
- Goroutines
- Channels
- Channel Direction
- Select
- Buffered Channels
- An Example
- Exercises
- 11. Next Steps
- Study the Masters
- Make Something
- Team Up
- A. Answers
- Index