• Complain

Donovan Alan A A - The go programming language

Here you can read online Donovan Alan A A - The go programming language full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. City: New York;Munich u.a, year: 2015;2016, publisher: Addison-Wesley;Pearson Education Limited (US titles), genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Donovan Alan A A The go programming language
  • Book:
    The go programming language
  • Author:
  • Publisher:
    Addison-Wesley;Pearson Education Limited (US titles)
  • Genre:
  • Year:
    2015;2016
  • City:
    New York;Munich u.a
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

The go programming language: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "The go programming language" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Go is an open-source programming language that makes it easy to build clean, reliable, and efficient software. It has been winning converts from dynamic language enthusiasts as well as users of traditional compiled languages. The former appreciate the robustness and efficiency that Gos lightweight type system brings to their code; the latter find Gos simplicity and fast tools a refreshing change. Thanks to its well-designed standard libraries and its excellent support for concurrent programming, Go is fast becoming the language of choice for distributed systems.
The Go Programming Languageis the definitive book on Go for the working programmer. It assumes no prior knowledge of Go, nor any other specific programming language, so youll find it an accessible guide whether you come from JavaScript, Ruby, Python, Java, or C++.
The book will quickly get you started using Go effectively from the beginning, and by the end, you will know how to use it well to write clear, idiomatic and efficient programs to solve real-world problems. Youll understand not just how to use its standard libraries, but how they work, and how to apply the same design techniques to your own projects.
The earlier chapters will introduce you to the basic concepts of Go programming---numbers, strings, functions---while at the same time presenting important computer science concepts like recursion, and useful examples of graphics, UTF-8, and error handling. The chapters on methods and interfaces will show you a new way to think about object-oriented programming; the chapter on concurrency explains why concurrency is so important in modern programming, and how Go helps you handle it well. Youll also learn about Gos pragmatic but effective approach to testing; how to build, test, and manage projects using the go tool, and the art of metaprogramming using reflection.
The book contains hundreds of interesting and practical examples that cover the whole language and a wide range of applications. The code samples from the book are available for download from gopl.io.

Donovan Alan A A: author's other books


Who wrote The go programming language? Find out the surname, the name of the author of the book and a list of all author's works by series.

The go programming language — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "The go programming language" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
About This E-Book

EPUB is an open, industry-standard format for e-books. However, support for EPUB and its many features varies across reading devices and applications. Use your device or app settings to customize the presentation to your liking. Settings that you can customize often include font, font size, single or double column, landscape or portrait mode, and figures that you can click or tap to enlarge. For additional information about the settings and features on your reading device or app, visit the device manufacturers Web site.

Many titles include programming code or configuration examples. To optimize the presentation of these elements, view the e-book in single-column, landscape mode and adjust the font size to the smallest setting. In addition to presenting code and configurations in the reflowable text format, we have included images of the code that mimic the presentation found in the print book; therefore, where the reflowable format may compromise the presentation of the code listing, you will see a Click here to view code image link. Click the link to view the print-fidelity code image. To return to the previous page viewed, click the Back button on your device or app.

The Go Programming Language

Alan A. A. Donovan
Google Inc.
Brian W. Kernighan
Princeton University

New York Boston Indianapolis San Francisco Toronto Montreal London Munich Paris - photo 1
New York Boston Indianapolis San Francisco
Toronto Montreal London Munich Paris Madrid
Capetown Sydney Tokyo Singapore Mexico City

Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and the publisher was aware of a trademark claim, the designations have been printed with initial capital letters or in all capitals.

The authors and publisher have taken care in the preparation of this book, but make no expressed or implied warranty of any kind and assume no responsibility for errors or omissions. No liability is assumed for incidental or consequential damages in connection with or arising out of the use of the information or programs contained herein.

For information about buying this title in bulk quantities, or for special sales opportunities (which may include electronic versions; custom cover designs; and content particular to your business, training goals, marketing focus, or branding interests), please contact our corporate sales department at or (800) 382-3419.

For government sales inquiries, please contact .

For questions about sales outside the United States, please contact .

Visit us on the Web: informit.com/aw

Library of Congress Control Number: 2015950709

Copyright 2016 Alan A. A. Donovan & Brian W. Kernighan

All rights reserved. Printed in the United States of America. This publication is protected by copyright, and permission must be obtained from the publisher prior to any prohibited reproduction, storage in a retrieval system, or transmission in any form or by any means, electronic, mechanical, photocopying, recording, or likewise. To obtain permission to use material from this work, please submit a written request to Pearson Education, Inc., Permissions Department, 200 Old Tappan Road, Old Tappan, New Jersey 07675, or you may fax your request to (201) 236-3290.

Front cover: Millau Viaduct, Tarn valley, southern France. A paragon of simplicity in modern engineering design, the viaduct replaced a convoluted path from capital to coast with a direct route over the clouds. Jean-Pierre Lescourret/Corbis.

Back cover: the original Go gopher. 2009 Rene French. Used under Creative Commons Attributions 3.0 license.

Typeset by the authors in Minion Pro, Lato, and Consolas, using Go, groff, ghostscript, and a host of other open-source Unix tools. Figures were created in Google Drawings.

ISBN-13: 978-0-13-419044-0

ISBN-10: 0-13-419044-0

Text printed in the United States on recycled paper at RR Donnelley in Crawfordsville, Indiana.

Second printing, December 2015

For Leila and Meg

Contents
Preface
Go is an open source programming language that makes iteasy to build simple, reliable, and efficient software.(From the Go web site at golang.org)

Go was conceived in September 2007 by Robert Griesemer, Rob Pike, andKen Thompson, all at Google, and was announced in November 2009. Thegoals of the language and itsaccompanying tools were to be expressive, efficient in bothcompilation and execution, and effective in writing reliable androbust programs.

Go bears a surface similarity to C and, like C, is a toolfor professional programmers, achieving maximum effect withminimum means. But it is much more than an updated version of C. Itborrows and adapts good ideas from many other languages, while avoidingfeatures that have led to complexity and unreliable code. Itsfacilities for concurrency are new and efficient, and itsapproach to data abstraction and object-oriented programming isunusually flexible.It has automatic memory management or garbage collection.

Go is especially well suited for building infrastructure likenetworked servers, and tools and systems for programmers, but it istruly a general-purpose language and finds use in domains asdiverse as graphics, mobile applications, and machine learning.It has become popular as a replacement for untyped scripting languagesbecause it balances expressiveness with safety: Go programs typicallyrun faster than programs written in dynamic languages and suffer farfewer crashes due to unexpected type errors.

Go is an open-source project, so source code for its compiler,libraries, and tools is freely available toanyone. Contributions to the project come froman active worldwide community.Go runs on Unix-like systemsLinux, FreeBSD, OpenBSD,Mac OS Xand on Plan 9 and Microsoft Windows.Programs written in one of these environmentsgenerally work without modification on the others.

This book is meant to help you start using Go effectively right awayand to use it well, taking full advantage of Goslanguage features and standard libraries to write clear, idiomatic, andefficient programs.

The Origins of Go

Like biologicalspecies, successful languages beget offspring that incorporate theadvantages of their ancestors; interbreeding sometimes leads tosurprising strengths; and, very occasionally, a radical new featurearises without precedent.We can learn a lot about why a language is the way it is and whatenvironment it has been adapted for by looking at these influences.

The figure below shows the most important influences ofearlier programming languages on the design of Go.

Go is sometimes described as a C-like language or as C for the 21stcentury - photo 2

Go is sometimes described as a C-like language, or as C for the 21stcentury. From C, Go inherited its expression syntax, control-flowstatements, basic data types, call-by-value parameter passing,pointers, and above all, Cs emphasis on programs that compileto efficient machine code and cooperate naturally with theabstractions of current operating systems.

But there are other ancestors in Gos family tree. One major stream ofinfluence comes from languages by Niklaus Wirth, beginning with Pascal.Modula-2 inspired the package concept.Oberon eliminated the distinction between module interface files andmodule implementation files.Oberon-2 influenced the syntax for packages, imports, and declarations,and Object Oberon provided the syntax for method declarations.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «The go programming language»

Look at similar books to The go programming language. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «The go programming language»

Discussion, reviews of the book The go programming language and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.