Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Go (programming language)

From Wikipedia, the free encyclopedia
Programming language
For the 2003 agent-based programming language, seeGo! (programming language).

Go
ParadigmMulti-paradigm:concurrent,imperative,functional,[1]object-oriented[2][3]
Designed byRobert Griesemer
Rob Pike
Ken Thompson[4]
DeveloperThe Go Authors[5]
First appearedNovember 10, 2009; 15 years ago (2009-11-10)
Stable release
1.25.3 / 13 October 2025; 24 days ago (13 October 2025)
Typing disciplineInferred,static,strong,[6]structural,[7][8]nominal
Memory managementGarbage collection
Implementation languageGo,Assembly language (gc);C++ (gofrontend)
OSDragonFly BSD,FreeBSD,Linux,macOS,NetBSD,OpenBSD,[9]Plan 9,[10]Solaris,Windows
License3-clause BSD[5] +patent grant[11]
Filename extensions.go
Websitego.dev
Majorimplementations
gc, gofrontend,gold
Influenced by
C,Oberon-2,Limbo,Active Oberon,communicating sequential processes,Pascal,Oberon,Smalltalk,Newsqueak,Modula-2,Alef,APL,BCPL,Modula,occam
Influenced
Crystal,V

Go is ahigh-levelgeneral purpose programming language that isstatically typed andcompiled. It is known for the simplicity of its syntax and the efficiency of development that it enables by the inclusion of a large standard library supplying many needs for common projects.[12] It was designed atGoogle[13] in 2007 byRobert Griesemer,Rob Pike, andKen Thompson, and publicly announced in November 2009.[4] It issyntactically similar toC, but also hasgarbage collection,structural typing,[7] andCSP-styleconcurrency.[14] It is often referred to asGolang to avoid ambiguity and because of its former domain name,golang.org, but its proper name is Go.[15]

There are two major implementations:

  • The original,self-hosting[16]compilertoolchain, initially developed inside Google;[17]
  • A frontend written inC++, called gofrontend,[18] originally aGCC frontend, providing gccgo, a GCC-based Go compiler;[19] later extended to also supportLLVM, providing an LLVM-based Go compiler called gollvm.[20]

A third-partysource-to-source compiler, GopherJS,[21] transpiles Go toJavaScript forfront-end web development.

History

[edit]

Go was designed atGoogle in 2007 to improveprogramming productivity in an era ofmulticore,networkedmachines and largecodebases.[22] The designers wanted to address criticisms of other languages in use at Google, but keep their useful characteristics:[23]

Its designers were primarily motivated by their shareddislike of C++.[25][26][27]

Go was publicly announced in November 2009,[28] and version 1.0 was released in March 2012.[29][30] Go is widely used in production at Google[31] and in many other organizations and open-source projects.

In retrospect the Go authors judged Go to be successful due to the overall engineering work around the language, including the runtime support for the language's concurrency feature.

Although the design of most languages concentrates on innovations in syntax, semantics, or typing, Go is focused on the software development process itself. ... The principal unusual property of the language itself—concurrency—addressed problems that arose with the proliferation of multicore CPUs in the 2010s. But more significant was the early work that established fundamentals for packaging, dependencies, build, test, deployment, and other workaday tasks of the software development world, aspectsthat are not usually foremost in language design.[32]

Branding and styling

[edit]
Go's mascot is a cartoongopher.

Thegophermascot was introduced in 2009 for theopen source launch of the language.Renée French, who had designed the rabbit mascot forPlan 9, adapted the gopher from an earlierWFMU T-shirt design.[33]

In November 2016, the Go and Go Mono fonts were released by type designersCharles Bigelow andKris Holmes specifically for use by the Go project. Go is ahumanist sans-serif resemblingLucida Grande, and Go Mono ismonospaced. Both fonts adhere to theWGL4 character set and were designed to be legible with a largex-height and distinctletterforms. Both Go and Go Mono adhere to theDIN 1450 standard by having a slashed zero, lowercasel with a tail, and an uppercaseI with serifs.[34][35]

In April 2018, the original logo was redesigned by brand designer Adam Smith. The new logo is a modern, stylized GO slanting right with trailing streamlines. The gopher mascot remained the same.[36]

Generics

[edit]

The lack of support forgeneric programming in initial versions of Go drew considerable criticism.[37] The designers expressed an openness to generic programming and noted that built-in functionswere in fact type-generic, but are treated as special cases; Pike called this a weakness that might be changed at some point.[38] The Google team built at least one compiler for an experimental Go dialect with generics, but did not release it.[39]

In August 2018, the Go principal contributors published draft designs for generic programming anderror handling and asked users to submit feedback.[40][41] However, the error handling proposal was eventually abandoned.[42]

In June 2020, a new draft design document[43] was published that would add the necessary syntax to Go for declaring generic functions and types. A code translation tool,go2go, was provided to allow users to try the new syntax, along with a generics-enabled version of the online Go Playground.[44]

Generics were finally added to Go in version 1.18 on March 15, 2022.[45]

Versioning

[edit]

Go 1 guarantees compatibility[46] for the language specification and major parts of the standard library. All versions up through the current Go 1.24 release[47] have maintained this promise.

Go uses ago1.[major].[patch] versioning format, such asgo1.24.0 and each major Go release is supported until there are two newer major releases. Unlike most software, Go calls the second number in a version the major, i.e., ingo1.24.0 the24 is the major version.[48] This is because Go plans to never reach 2.0, prioritizing backwards compatibility over potential breaking changes.[49]

Design

[edit]
2015 lecture of Rob Pike (one of the Go creators)

Go is influenced byC (especially thePlan 9dialect[50][failed verificationsee discussion]), but with an emphasis on greater simplicity and safety. It consists of:

Syntax

[edit]

Go's syntax includes changes fromC aimed at keeping code concise and readable. A combined declaration/initialization operator was introduced that allows the programmer to writei:=3 ors:="Hello, world!",without specifying the types of variables used. This contrasts with C'sinti=3; andconstchars[]="Hello, world!"; (though sinceC23 type inference has been supported usingauto, likeC++). Go also removes the requirement to use parentheses in if statement conditions.

Semicolons still terminate statements;[a] but are implicit when the end of a line occurs.[b]

Methods may return multiple values, and returning aresult,err pair is the conventional way a method indicates an error to its caller in Go.[c] Go adds literal syntaxes for initializing struct parameters by name and for initializingmaps andslices. As an alternative to C's three-statementfor loop, Go'srange expressions allow concise iteration over arrays, slices, strings, maps, and channels.[58]

Keywords

[edit]

Go contains the following keywords, of which there are 25:[59]

  • break
  • case
  • chan
  • const
  • continue
  • default
  • defer
  • else
  • fallthrough
  • for
  • func
  • go
  • goto
  • if
  • import
  • interface
  • map
  • package
  • range
  • return
  • select
  • struct
  • switch
  • type
  • var

Types

[edit]

Go has a number of built-in types, including numeric ones (byte,int64,float32, etc.),Booleans, and byte strings (string). Strings are immutable; built-in operators and keywords (rather than functions) provide concatenation, comparison, andUTF-8 encoding/decoding.[60]Record types can be defined with thestruct keyword.[61]

Go contains the following primitives:[62]

  • bool
  • int8
  • uint8
  • int16
  • uint16
  • int32
  • uint32
  • int64
  • uint64
  • int
  • uint
  • uintptr
  • float32
  • float64
  • complex64
  • complex128
  • string

Note thatbyte is an alias foruint8 andrune is an alias forint32.

For each typeT and each non-negative integer constantn, there is anarray type denoted[n]T; arrays of differing lengths are thus of different types.Dynamic arrays are available as "slices", denoted[]T for some typeT (compare to other languages like C/C++ andJava, where instead the arrays are denotedT[]) These have a length and acapacity specifying when new memory needs to be allocated to expand the array. Several slices may share their underlying memory.[38][63][64]

Pointers are available for all types, and the pointer-to-T type is denoted*T (similar toRust; compare to other languages like C/C++ andC#, where pointers are denotedT*). Address-taking and indirection use the& and* operators, as in C, or happen implicitly through the method call or attribute access syntax.[65][66] There is no pointer arithmetic,[d] except via the specialunsafe.Pointer type in the standard library.[67]

For a pair of typesK,V, the typemap[K]V is the type mapping type-K keys to type-V values, which can be thought of as equivalent toMap<K, V> in other languages. The Go Programming Language specification does not give any performance guarantees or implementation requirements for map types, though it is usually implemented as ahash table (equivalent toHashMap<K, V> in other languages). Hash tables are built into the language, with special syntax and built-in functions.chan T is achannel that allows sending values of typeT betweenconcurrent Go processes.[68]

Aside from its support forinterfaces, Go's type system isnominal: thetype keyword can be used to define a newnamed type, which is distinct from other named types that have the same layout (in the case of astruct, the same members in the same order). Some conversions between types (e.g., between the various integer types) are pre-defined and adding a new type may define additional conversions, but conversions between named types must always be invoked explicitly.[69] For example, thetype keyword can be used to define a type forIPv4 addresses, based on 32-bit unsigned integers as follows:

typeipv4addruint32

With this type definition,ipv4addr(x) interprets theuint32 valuex as an IP address. Simply assigningx to a variable of typeipv4addr is a type error.[70]

Constant expressions may be either typed or "untyped"; they are given a type when assigned to a typed variable if the value they represent passes a compile-time check.[71]

Function types are indicated by thefunc keyword; they take zero or moreparameters andreturn zero or more values, all of which are typed. The parameter and return values determine a function type; thus,func(string, int32) (int, error) is the type of functions that take astring and a 32-bit signed integer, and return a signed integer (of default width) and a value of the built-in interface typeerror.[72]

Any named type has amethod set associated with it. The IP address example above can be extended with a method for checking whether its value is a known standard:

// ZeroBroadcast reports whether addr is 255.255.255.255.func(addripv4addr)ZeroBroadcast()bool{returnaddr==0xFFFFFFFF}

Due to nominal typing, this method definition adds a method toipv4addr, but not onuint32. While methods have special definition and call syntax, there is no distinct method type.[73]

Interface system

[edit]

Go provides two features that replaceclass inheritance.[citation needed]

The first isembedding, which can be viewed as an automated form ofcomposition.[74]

The second are itsinterfaces, which providesruntime polymorphism.[75]: 266  Interfaces are a class of types and provide a limited form ofstructural typing in the otherwise nominal type system of Go. An object which is of an interface type is also of another type, much likeC++ objects being simultaneously of a base and derived class. The design of Go interfaces was inspired byprotocols from the Smalltalk programming language.[76] Multiple sources use the termduck typing when describing Go interfaces.[77][78] Although the term duck typing is not precisely defined and therefore not wrong, it usually implies that type conformance is not statically checked. Because conformance to a Go interface is checked statically by the Go compiler (except when performing a type assertion), the Go authors prefer the termstructural typing.[79]

The definition of an interface type lists required methods by name and type. Any object of type T for which functions exist matching all the required methods of interface type I is an object of type I as well. The definition of type T need not (and cannot) identify type I. For example, ifShape,Squareand Circle are defined as

import"math"typeShapeinterface{Area()float64}// Note: no "implements" declarationtypeSquarestruct{sidefloat64}func(sqSquare)Area()float64{returnsq.side*sq.side}// No "implements" declaration here eithertypeCirclestruct{radiusfloat64}func(cCircle)Area()float64{returnmath.Pi*math.Pow(c.radius,2)}

then both aSquare and aCircle are implicitly aShape and can be assigned to aShape-typed variable.[75]: 263–268  In formal language, Go's interface system providesstructural rather thannominal typing. Interfaces can embed other interfaces with the effect of creating a combined interface that is satisfied by exactly the types that implement the embedded interface and any methods that the newly defined interface adds.[75]: 270 

The Go standard library uses interfaces to provide genericity in several places, including the input/output system that is based on the concepts ofReader andWriter.[75]: 282–283 

Besides calling methods via interfaces, Go allows converting interface values to other types with a run-time type check. The language constructs to do so are thetype assertion,[80] which checks against a single potential type:

varshpShape=Square{5}square,ok:=shp.(Square)// Asserts Square type on shp, should workifok{fmt.Printf("%#v\n",square)}else{fmt.Println("Can't print shape as Square")}

and thetype switch,[81] which checks against multiple types:[citation needed]

func(sqSquare)Diagonal()float64{returnsq.side*math.Sqrt2}func(cCircle)Diameter()float64{return2*c.radius}funcLongestContainedLine(shpShape)float64{switchv:=shp.(type){caseSquare:returnv.Diagonal()// Or, with type assertion, shp.(Square).Diagonal()caseCircle:returnv.Diameter()// Or, with type assertion, shp.(Circle).Diameter()default:return0// In practice, this should be handled with errors}}

Theempty interfaceinterface{} is an important base case because it can refer to an item ofany concrete type. It is similar to theObject class inJava orC# orvoid* inC orAny inC++ andRust and is satisfied by any type, including built-in types likeint.[75]: 284  Code using the empty interface cannot simply call methods (or built-in operators) on the referred-to object, but it can store theinterface{} value, try to convert it to a more useful type via a type assertion or type switch, or inspect it with Go'sreflect package.[82] Becauseinterface{} can refer to any value, it is a limited way to escape the restrictions of static typing, likevoid* in C but with additional run-time type checks.[citation needed]

Theinterface{} type can be used to model structured data of any arbitrary schema in Go, such asJSON orYAML data, by representing it as amap[string]interface{} (map of string to empty interface). This recursively describes data in the form of a dictionary with string keys and values of any type.[83]

Interface values are implemented using pointer to data and a second pointer to run-time type information.[84] Like some other types implemented using pointers in Go, interface values arenil if uninitialized.[85]

Generic code using parameterized types

[edit]

Since version 1.18, Go supports generic code using parameterized types.[86]

Functions and types now have the ability to be generic using type parameters. These type parameters are specified within square brackets, right after the function or type name.[87] The compiler transforms the generic function or type into non-generic by substitutingtype arguments for the type parameters provided, either explicitly by the user or type inference by the compiler.[88] This transformation process is referred to as type instantiation.[89]

Interfaces now can define a set of types (known as type set) using| (Union) operator, as well as a set of methods. These changes were made to support type constraints in generics code. For a generic function or type, a constraint can be thought of as the type of the type argument: a meta-type. This new~T syntax will be the first use of~ as a token in Go.~T means the set of all types whose underlying type isT.[90]

typeNumberinterface{~int|~float64|~float32|~int32|~int64}funcAdd[TNumber](nums...T)T{varsumTfor_,v:=rangenums{sum+=v}returnsum}funcmain(){add:=Add[int]// Type instantiationprintln(add(1,2,3,4,5))// 15res:=Add(1.1,2.2,3.3,4.4,5.5)// Type Inferenceprintln(res)// +1.650000e+001}

Enumerated types

[edit]
This section is an excerpt fromEnumerated type § Go.[edit]

Go uses theiota keyword to create enumerated constants.[91][92]

typeByteSizeintconst(_=iota// ignore first value by assigning to blank identifier; 0KBByteSize=1<<(10*iota)// 1 << (10 * 1) == 1 << 10 == 1024; in binary 10000000000MB// 1 << (10 * 2) == 1048576;                                     in binary 100000000000000000000GB// 1 << (10 * 3) == 1073741824;                                  in binary 1000000000000000000000000000000)

Package system

[edit]

In Go's package system, each package has a path (e.g.,"compress/bzip2" or"golang.org/x/net/html") and a name (e.g.,bzip2 orhtml). By default other packages' definitions mustalways be prefixed with the other package's name. However the name used can be changed from the package name, and if imported as_, then no package prefix is required. Only thecapitalized names from other packages are accessible:io.Reader is public butbzip2.reader is not.[93] Thego get command can retrieve packages stored in a remote repository[94] and developers are encouraged to develop packages inside a base path corresponding to a source repository (such as example.com/user_name/package_name) to reduce the likelihood of name collision with future additions to the standard library or other external libraries.[95]

Concurrency: goroutines and channels

[edit]
DotGo 2015 - Matt Aimonetti - Applied concurrency in Go

The Go language has built-in facilities, as well as library support, for writingconcurrent programs. The runtime isasynchronous: program execution that performs, for example, a network read will be suspended until data is available to process, allowing other parts of the program to perform other work. This is built into the runtime and does not require any changes in program code. The go runtime also automatically schedules concurrent operations (goroutines) across multiple CPUs; this can achieve parallelism for a properly written program.[96]

The primary concurrency construct is thegoroutine, a type ofgreen thread.[97]: 280–281  A function call prefixed with thego keyword starts a function in a new goroutine. The language specification does not specify how goroutines should be implemented, but current implementations multiplex a Go process's goroutines onto a smaller set ofoperating-system threads, similar to the scheduling performed inErlang andHaskell's GHC runtime implementation.[98]: 10 

While a standard library package featuring most of the classicalconcurrency control structures (mutex locks, etc.) is available,[98]: 151–152  idiomatic concurrent programs instead preferchannels, whichsend messages between goroutines.[99] Optional buffers store messages inFIFO order[100]: 43  and allow sending goroutines to proceed before their messages are received.[97]: 233 

Channels are typed, so that a channel of typechan T can only be used to transfer messages of typeT. Special syntax is used to operate on them;<-ch is an expression that causes the executing goroutine to block until a value comes in over the channelch, whilech <- x sends the valuex (possibly blocking until another goroutine receives the value). The built-inswitch-likeselect statement can be used to implement non-blocking communication on multiple channels; seebelow for an example. Go has a memory model describing how goroutines must use channels or other operations to safely share data.[101]

The existence of channels does not by itself set Go apart fromactor model-style concurrent languages like Erlang, where messages are addressed directly to actors (corresponding to goroutines). In the actor model, channels are themselves actors, therefore addressing a channel just means to address an actor. The actor style can be simulated in Go by maintaining a one-to-one correspondence between goroutines and channels, but the language allows multiple goroutines to share a channel or a single goroutine to send and receive on multiple channels.[98]: 147 

From these tools one can build concurrent constructs likeworker pools, pipelines (in which, say, a file is decompressed and parsed as it downloads), background calls with timeout, "fan-out" parallel calls to a set of services, and others.[102] Channels have also found uses further from the usual notion of interprocess communication, like serving as a concurrency-safe list of recycled buffers,[103] implementingcoroutines (which helped inspire the namegoroutine),[104] and implementingiterators.[105]

Concurrency-related structural conventions of Go (channels and alternative channel inputs) are derived fromTony Hoare'scommunicating sequential processes model. Unlike previous concurrent programming languages such asOccam orLimbo (a language on which Go co-designer Rob Pike worked),[106] Go does not provide any built-in notion of safe or verifiable concurrency.[107] While the communicating-processes model is favored in Go, it is not the only one: all goroutines in a program share a single address space. This means that mutable objects and pointers can be shared between goroutines; see§ Lack of data race safety, below.

Suitability for parallel programming

[edit]

Although Go's concurrency features are not aimed primarily atparallel processing,[96] they can be used to programshared-memorymulti-processor machines. Various studies have been done into the effectiveness of this approach.[108] One of these studies compared the size (inlines of code) and speed of programs written by a seasoned programmer not familiar with the language and corrections to these programs by a Go expert (from Google's development team), doing the same forChapel,Cilk andIntel TBB. The study found that the non-expert tended to writedivide-and-conquer algorithms with onego statement per recursion, while the expert wrote distribute-work-synchronize programs using one goroutine per processor core. The expert's programs were usually faster, but also longer.[109]

Lack of data race safety

[edit]

Go's approach to concurrency can be summarized as "don't communicate by sharing memory; share memory by communicating".[110] There are no restrictions on how goroutines access shared data, makingdata races possible. Specifically, unless a program explicitly synchronizes via channels or other means, writes from one goroutine might be partly, entirely, or not at all visible to another, often with no guarantees about ordering of writes.[107] Furthermore, Go'sinternal data structures like interface values, slice headers, hash tables, and string headers are not immune to data races, so type and memory safety can be violated in multithreaded programs that modify shared instances of those types without synchronization.[111][112] Instead of language support, safe concurrent programming thus relies on conventions; for example, Chisnall recommends an idiom called "aliasesxor mutable", meaning that passing a mutable value (or pointer) over a channel signals a transfer of ownership over the value to its receiver.[98]: 155  The gc toolchain has an optional data race detector that can check for unsynchronized access to shared memory during runtime since version 1.1,[113] additionally a best-effort race detector is also included by default since version 1.6 of the gc runtime for access to themap data type.[114]

Binaries

[edit]

The linker in the gc toolchain creates statically linked binaries by default; therefore all Go binaries include the Go runtime.[115][116]

Omissions

[edit]

Go deliberately omits certain features common in other languages, including(implementation) inheritance,assertions,[e]pointer arithmetic,[d]implicit type conversions,untagged unions,[f] andtagged unions.[g] The designers added only those facilities that all three agreed on.[119]

Of the omitted language features, the designers explicitly argue against assertions and pointer arithmetic, while defending the choice to omit type inheritance as giving a more useful language, encouraging instead the use ofinterfaces to achievedynamic dispatch[h] andcomposition to reuse code. Composition anddelegation are in fact largely automated bystruct embedding; according to researchers Schmageret al., this feature "has many of the drawbacks of inheritance: it affects the public interface of objects, it is not fine-grained (i.e, no method-level control over embedding), methods of embedded objects cannot be hidden, and it is static", making it "not obvious" whether programmers will overuse it to the extent that programmers in other languages are reputed to overuse inheritance.[74]

Exception handling was initially omitted in Go due to lack of a "design that gives value proportionate to the complexity".[120] An exception-likepanic/recover mechanism that avoids the usualtry-catch control structure was proposed[121] and released in the March 30, 2010 snapshot.[122] The Go authors advise using it for unrecoverable errors such as those that should halt an entire program or server request, or as a shortcut to propagate errors up the stack within a package.[123][124] Across package boundaries, Go includes a canonical error type, and multi-value returns using this type are the standard idiom.[4]

Style

[edit]

The Go authors put substantial effort into influencing the style of Go programs:

  • Indentation, spacing, and other surface-level details of code are automatically standardized by thegofmt tool. It uses tabs for indentation and blanks for alignment. Alignment assumes that an editor is using a fixed-width font.[125]golint does additional style checks automatically, but has been deprecated and archived by the Go maintainers.[126]
  • Tools and libraries distributed with Go suggest standard approaches to things like API documentation (godoc),[127] testing (go test), building (go build), package management (go get), and so on.
  • Go enforces rules that are recommendations in other languages, for example banning cyclic dependencies, unused variables[128] or imports,[129] and implicit type conversions.
  • Theomission of certain features (for example, functional-programming shortcuts likemap and Java-styletry/finally blocks) tends to encourage a particular explicit, concrete, and imperative programming style.
  • On day one the Go team published a collection of Go idioms,[127] and later also collected code review comments,[130] talks,[131] and official blog posts[132] to teach Go style and coding philosophy.

Tools

[edit]

The main Go distribution includes tools forbuilding,testing, andanalyzing code:

  • go build, which builds Go binaries using only information in the source files themselves, no separate makefiles
  • go test, for unit testing and microbenchmarks as well as fuzzing
  • go fmt, for formatting code
  • go install, for retrieving and installing remote packages
  • go vet, a static analyzer looking for potential errors in code
  • go run, a shortcut for building and executing code
  • go doc, for displaying documentation
  • go generate, a standard way to invoke code generators
  • go mod, for creating a new module, adding dependencies, upgrading dependencies, etc.
  • go tool, for invoking developer tools (added in Go version 1.24)

It also includesprofiling anddebugging support,fuzzing capabilities to detect bugs,runtime instrumentation (for example, to trackgarbage collection pauses), and adata race detector.

Another tool maintained by the Go team but is not included in Go distributions isgopls, a language server that providesIDE features such asintelligent code completion toLanguage Server Protocol compatible editors.[133]

An ecosystem of third-party tools adds to the standard distribution, such asgocode, which enables code autocompletion in many text editors,goimports, which automatically adds/removes package imports as needed, anderrcheck, which detects code that might unintentionally ignore errors.

Examples

[edit]

Hello world

[edit]
packagemainimport"fmt"funcmain(){fmt.Println("hello world")}

where "fmt" is the package forformattedI/O, similar to C's<stdio.h> or C++<print>.[134]

Concurrency

[edit]

The following simple program demonstrates Go'sconcurrency features to implement an asynchronous program. It launches two lightweight threads ("goroutines"): one waits for the user to type some text, while the other implements a timeout. Theselect statement waits for either of these goroutines to send a message to the main routine, and acts on the first message to arrive (example adapted from David Chisnall's book).[98]: 152 

packagemainimport("fmt""time")funcreadword(chchanstring){fmt.Println("Type a word, then hit Enter.")varwordstringfmt.Scanf("%s",&word)ch<-word}functimeout(tchanbool){time.Sleep(5*time.Second)t<-false}funcmain(){t:=make(chanbool)gotimeout(t)ch:=make(chanstring)goreadword(ch)select{caseword:=<-ch:fmt.Println("Received",word)case<-t:fmt.Println("Timeout.")}}

Testing

[edit]

The testing package provides support for automated testing of go packages.[135] Target function example:

funcExtractUsername(emailstring)string{at:=strings.Index(email,"@")returnemail[:at]}

Test code (note thatassert keyword is missing in Go; tests live in <filename>_test.go at the same package):

import("testing")funcTestExtractUsername(t*testing.T){t.Run("withoutDot",func(t*testing.T){username:=ExtractUsername("r@google.com")ifusername!="r"{t.Fatalf("Got: %v\n",username)}})t.Run("withDot",func(t*testing.T){username:=ExtractUsername("jonh.smith@example.com")ifusername!="jonh.smith"{t.Fatalf("Got: %v\n",username)}})}

It is possible to run tests in parallel.

Web app

[edit]

Thenet/http[136] package provides support for creating web applications.

This example would show "Hello world!" when localhost:8080 is visited.

packagemainimport("fmt""log""net/http")funchelloFunc(whttp.ResponseWriter,r*http.Request){fmt.Fprintf(w,"Hello world!")}funcmain(){http.HandleFunc("/",helloFunc)log.Fatal(http.ListenAndServe(":8080",nil))}

Applications

[edit]

Go has found widespread adoption in various domains due to its robust standard library and ease of use.[137]

Popular applications include:

  • Caddy — a web server that automates the process of setting up HTTPS[138]
  • Docker — a platform for containerization, aiming to ease the complexities of software development and deployment[139]
  • Kubernetes — automates the deployment, scaling, and management of containerized applications[140]
  • CockroachDB — a distributed SQL database engineered for scalability and strong consistency[141]
  • Hugo — a static site generator that prioritizes speed and flexibility, allowing developers to create websites efficiently[142]

Reception

[edit]

The interface system, and the deliberate omission of inheritance, were praised by Michele Simionato, who likened these characteristics to those ofStandard ML, calling it "a shame that no popular language has followed [this] particular route".[143]

Dave Astels atEngine Yard wrote in 2009:[144]

Go is extremely easy to dive into. There are a minimal number of fundamental language concepts and thesyntax is clean and designed to be clear and unambiguous.Gois still experimental and still a little rough around the edges.

Go was named Programming Language of the Year by theTIOBE Programming Community Index in its first year, 2009, for having a larger 12-month increase in popularity (in only 2 months, after its introduction in November) than any other language that year, and reached 13th place by January 2010,[145] surpassing established languages likePascal. By June 2015, its ranking had dropped to below 50th in the index, placing it lower thanCOBOL andFortran.[146] But as of January 2017, its ranking had surged to 13th, indicating significant growth in popularity and adoption. Go was again awarded TIOBE Programming Language of the Year in 2016.[147]

Bruce Eckel has stated:[148]

The complexity ofC++ (even more complexity has been added in the new C++), and the resulting impact on productivity, is no longer justified. All the hoops that the C++ programmer had to jump through in order to use a C-compatible language make no sense anymore -- they're just a waste of time and effort. Go makes much more sense for the class of problems that C++ was originally intended to solve.

A 2011 evaluation of the language and itsgc implementation in comparison to C++ (GCC), Java andScala by a Google engineer found:

Go offers interesting language features, which also allow for a concise and standardized notation. The compilers for this language are still immature, which reflects in both performance and binary sizes.

— R. Hundt[149]

The evaluation got a rebuttal from the Go development team. Ian Lance Taylor, who had improved the Go code for Hundt's paper, had not been aware of the intention to publish his code, and says that his version was "never intended to be an example of idiomatic or efficient Go"; Russ Cox then optimized the Go code, as well as the C++ code, and got the Go code to run almost as fast as the C++ version and more than an order of magnitude faster than the code in the paper.[150]

  • Go'snil combined with the lack ofalgebraic types leads to difficulty handling failures andbase cases.[151][152]
  • Go does not allow an opening brace to appear on its own line, which forces all Go programmers to use the same brace style.[153]
  • Go has been criticized for focusing on simplicity of implementation rather than correctness and flexibility; as an example, the language usesPOSIX file semantics on all platforms, and therefore provides incorrect information on platforms such asWindows (which do not follow the aforementioned standard).[154][155]
  • A study showed that it is as easy to make concurrency bugs with message passing as with shared memory, sometimes even more.[156]

Naming dispute

[edit]

On November 10, 2009, the day of the general release of the language, Francis McCabe, developer of theGo! programming language (note the exclamation point), requested a name change of Google's language to prevent confusion with his language, which he had spent 10 years developing.[157] McCabe raised concerns that "the 'big guy' will end up steam-rollering over" him, and this concern resonated with the more than 120 developers who commented on Google's official issues thread saying they should change the name, with some[158] even saying the issue contradicts Google's motto of:Don't be evil.[159]

On October 12, 2010, the filed public issue ticket was closed by Google developer Russ Cox (@rsc) with the custom status "Unfortunate" accompanied by the following comment:

"There are many computing products and services named Go. In the 11 months since our release, there has been minimal confusion of the two languages."[159]

See also

[edit]

Notes

[edit]
  1. ^But "To allow complex statements to occupy a single line, a semicolon may be omitted before a closing ) or }".[56]
  2. ^"if the newline comes after a token that could end a statement, [the lexer will] insert a semicolon".[57]
  3. ^Usually, exactly one of the result and error values has a value other than the type's zero value; sometimes both do, as when a read or write can only be partially completed, and sometimes neither, as when a read returns 0 bytes. SeeSemipredicate problem: Multivalued return.
  4. ^abLanguage FAQ "Why is there no pointer arithmetic? Safety ... never derive an illegal address that succeeds incorrectly ... using array indices can be as efficient as ... pointer arithmetic ... simplify the implementation of the garbage collector...."[4]
  5. ^Language FAQ "Why does Go not have assertions? ...our experience has been that programmers use them as a crutch to avoid thinking about proper error handling and reporting...."[4]
  6. ^Language FAQ "Why are there no untagged unions...? [they] would violate Go's memory safety guarantees."[4]
  7. ^Language FAQ "Why does Go not have variant types? ... We considered [them but] they overlap in confusing ways with interfaces.... [S]ome of what variant types address is already covered, ... although not as elegantly."[4] (The tag of an interface type[117] is accessed with a type assertion[118]).
  8. ^Questions "How do I get dynamic dispatch of methods?" and "Why is there no type inheritance?" in the language FAQ.[4]

References

[edit]
This article incorporates material from theofficial Go tutorial, which is licensed under the Creative Commons Attribution 3.0 license.
  1. ^"Codewalk: First-Class Functions in Go".Go supports first class functions, higher-order functions, user-defined function types, function literals, closures, and multiple return values. This rich feature set supports a functional programming style in a strongly typed language.
  2. ^"Is Go an object-oriented language?". RetrievedApril 13, 2019.Although Go has types and methods and allows an object-oriented style of programming, there is no type hierarchy.
  3. ^"Go: code that grows with grace". RetrievedJune 24, 2018.Go is Object Oriented, but not in the usual way.
  4. ^abcdefgh"Language Design FAQ".The Go Programming Language. January 16, 2010.Archived from the original on July 28, 2025. RetrievedFebruary 27, 2010.
  5. ^ab"Text file LICENSE".The Go Programming Language.Archived from the original on July 16, 2025. RetrievedOctober 5, 2012.
  6. ^"The Go Programming Language Specification".The Go Programming Language.Archived from the original on August 13, 2025.
  7. ^ab"Why doesn't Go have "implements" declarations?".The Go Programming Language.Archived from the original on July 28, 2025. RetrievedOctober 1, 2015.
  8. ^Pike, Rob [@rob_pike] (December 22, 2014)."Go has structural typing, not duck typing. Full interface satisfaction is checked and required" (Tweet). Archived fromthe original on April 7, 2022. RetrievedMarch 13, 2016 – viaTwitter.
  9. ^"lang/go: go-1.4".OpenBSD ports. December 23, 2014. RetrievedJanuary 19, 2015.
  10. ^"Go Porting Efforts".Go Language Resources. cat-v. January 12, 2010. RetrievedJanuary 18, 2010.
  11. ^"Additional IP Rights Grant".The Go Programming Language.Archived from the original on March 30, 2025. RetrievedOctober 5, 2012.
  12. ^"Go Introduction".www.w3schools.com. RetrievedNovember 23, 2024.
  13. ^Kincaid, Jason (November 10, 2009)."Google's Go: A New Programming Language That's Python Meets C++".TechCrunch. RetrievedJanuary 18, 2010.
  14. ^Metz, Cade (May 5, 2011)."Google Go boldly goes where no code has gone before".The Register.Archived from the original on July 28, 2025.
  15. ^"Is the language called Go or Golang?". RetrievedMarch 16, 2022.The language is called Go.
  16. ^"Go 1.5 Release Notes". RetrievedJanuary 28, 2016.The compiler and runtime are now implemented in Go and assembler, without C.
  17. ^"The Go programming language".GitHub. RetrievedNovember 1, 2024.
  18. ^"gofrontend".GitHub. RetrievedNovember 1, 2024.
  19. ^"gccgo". RetrievedNovember 1, 2024.gccgo, the GNU compiler for the Go programming language
  20. ^"Gollvm". RetrievedNovember 1, 2024.Gollvm is an LLVM-based Go compiler.
  21. ^"A compiler from Go to JavaScript for running Go code in a browser: Gopherjs/Gopherjs".GitHub.Archived from the original on December 12, 2023.
  22. ^"Go at Google: Language Design in the Service of Software Engineering". RetrievedOctober 8, 2018.
  23. ^Pike, Rob (April 28, 2010)."Another Go at Language Design".Stanford EE Computer Systems Colloquium.Stanford University.Video available.
  24. ^"Frequently Asked Questions (FAQ) - The Go Programming Language".The Go Programming Language. RetrievedFebruary 26, 2016.
  25. ^Binstock, Andrew (May 18, 2011)."Dr. Dobb's: Interview with Ken Thompson".Dr. Dobb's. Archived fromthe original on January 5, 2013. RetrievedFebruary 7, 2014.
  26. ^Pike, Rob (2012)."Less is exponentially more".
  27. ^Griesemer, Robert (2015)."The Evolution of Go".
  28. ^Griesemer, Robert; Pike, Rob; Thompson, Ken; Taylor, Ian; Cox, Russ; Kim, Jini; Langley, Adam."Hey! Ho! Let's Go!".Google Open Source. RetrievedMay 17, 2018.
  29. ^Shankland, Stephen (March 30, 2012)."Google's Go language turns one, wins a spot at YouTube: The lower-level programming language has matured enough to sport the 1.0 version number. And it's being used for real work at Google". News.CNet. CBS Interactive Inc. RetrievedAugust 6, 2017.Google has released version 1 of its Go programming language, an ambitious attempt to improve upon giants of the lower-level programming world such as C and C++.
  30. ^"Release History".The Go Programming Language.
  31. ^"Go FAQ: Is Google using Go internally?". RetrievedMarch 9, 2013.
  32. ^The Go Programming Language and Environment. Communications of the ACM.https://dl.acm.org/doi/pdf/10.1145/3488716
  33. ^"The Go Gopher - The Go Programming Language".go.dev. RetrievedFebruary 9, 2023.
  34. ^"Go fonts". Go. November 16, 2016. RetrievedMarch 12, 2019.
  35. ^"Go Font TTFs".GitHub. RetrievedApril 2, 2019.
  36. ^"Go's New Brand".The Go Blog. RetrievedNovember 9, 2018.
  37. ^Merrick, Alice (March 9, 2021)."Go Developer Survey 2020 Results".Go Programming Language. RetrievedMarch 16, 2022.
  38. ^abPike, Rob (September 26, 2013)."Arrays, slices (and strings): The mechanics of 'append'".The Go Blog. RetrievedMarch 7, 2015.
  39. ^"E2E: Erik Meijer and Robert Griesemer".Channel 9. Microsoft. May 7, 2012.
  40. ^"Go 2 Draft Designs". RetrievedSeptember 12, 2018.
  41. ^"The Go Blog: Go 2 Draft Designs". August 28, 2018.
  42. ^"Proposal: A built-in Go error check function, "try"".Go repository on GitHub. RetrievedMarch 16, 2022.
  43. ^"Type Parameters — Draft Design".go.googlesource.com.
  44. ^"Generics in Go".bitfieldconsulting.com. December 17, 2021.
  45. ^"Go 1.18 is released!".Go Programming Language. March 15, 2022. RetrievedMarch 16, 2022.
  46. ^"Go 1 and the Future of Go Programs".The Go Programming Language.
  47. ^"Go 1.24 Release Notes".The Go Programming Language.
  48. ^"Release History".The Go Programming Language.
  49. ^"Backward Compatibility, Go 1.21, and Go 2".The Go Programming Language.
  50. ^"A Quick Guide to Go's Assembler".go.dev. RetrievedDecember 31, 2021.
  51. ^Pike, Rob (November 10, 2009)."The Go Programming Language". YouTube. RetrievedJuly 1, 2011.
  52. ^Pike, Rob (November 10, 2009).The Go Programming Language(flv) (Tech talk). Google. Event occurs at 8:53.
  53. ^"Download and install packages and dependencies". Seegodoc.org for addresses and documentation of some packages.
  54. ^"GoDoc".godoc.org.
  55. ^Pike, Rob."The Changelog" (Podcast). Archived fromthe original on October 20, 2013. RetrievedOctober 7, 2013.
  56. ^"Go Programming Language Specification, §Semicolons".The Go Programming Language.
  57. ^"Effective Go, §Semicolons".The Go Programming Language.
  58. ^"The Go Programming Language Specification".The Go Programming Language.
  59. ^"Keywords and Identifiers in Go".go101.org. RetrievedOctober 10, 2025.
  60. ^Pike, Rob (October 23, 2013)."Strings, bytes, runes and characters in Go".
  61. ^Doxsey, Caleb."Structs and Interfaces — An Introduction to Programming in Go".www.golang-book.com. RetrievedOctober 15, 2018.
  62. ^"Go Type System Overview".go101.org. RetrievedOctober 10, 2025.
  63. ^Gerrand, Andrew."Go Slices: usage and internals".
  64. ^The Go Authors."Effective Go: Slices".
  65. ^The Go authors."Selectors".
  66. ^The Go authors."Calls".
  67. ^"Go Programming Language Specification, §Package unsafe".The Go Programming Language.
  68. ^"The Go Programming Language Specification".go.dev. RetrievedDecember 31, 2021.
  69. ^"The Go Programming Language Specification".The Go Programming Language.
  70. ^"A tour of go".go.dev.
  71. ^"The Go Programming Language Specification".The Go Programming Language.
  72. ^"The Go Programming Language Specification".go.dev. RetrievedDecember 31, 2021.
  73. ^"The Go Programming Language Specification".The Go Programming Language.
  74. ^abSchmager, Frank; Cameron, Nicholas; Noble, James (2010).GoHotDraw: evaluating the Go programming language with design patterns. Evaluation and Usability of Programming Languages and Tools. ACM.
  75. ^abcdeBalbaert, Ivo (2012).The Way to Go: A Thorough Introduction to the Go Programming Language. iUniverse.
  76. ^"The Evolution of Go".talks.golang.org. RetrievedMarch 13, 2016.
  77. ^Diggins, Christopher (November 24, 2009)."Duck Typing and the Go Programming Language".Dr. Dobb's, The world of software development. RetrievedMarch 10, 2016.
  78. ^Ryer, Mat (December 1, 2015)."Duck typing in Go". RetrievedMarch 10, 2016.
  79. ^"Frequently Asked Questions (FAQ) - The Go Programming Language".The Go Programming Language.
  80. ^"The Go Programming Language Specification".The Go Programming Language.
  81. ^"The Go Programming Language Specification".The Go Programming Language.
  82. ^"reflect package".pkg.go.dev.
  83. ^"map[string]interface{} in Go".bitfieldconsulting.com. June 6, 2020.
  84. ^"Go Data Structures: Interfaces". RetrievedNovember 15, 2012.
  85. ^"The Go Programming Language Specification".The Go Programming Language.
  86. ^"Go 1.18 Release Notes: Generics".Go Programming Language. March 15, 2022. RetrievedMarch 16, 2022.
  87. ^"Type Parameters Proposal".go.googlesource.com. RetrievedJune 25, 2023.
  88. ^"The Go Programming Language Specification - The Go Programming Language".go.dev. RetrievedJune 25, 2023.
  89. ^"An Introduction To Generics - The Go Programming Language".go.dev. RetrievedJune 25, 2023.
  90. ^"Type Parameters Proposal".go.googlesource.com. RetrievedJune 25, 2023.
  91. ^"Effective Go".golang.org. The Go Authors. RetrievedMay 13, 2014.
  92. ^"Go Wiki: Iota - The Go Programming Language".go.dev. RetrievedMay 15, 2025.Go's iota identifier is used in const declarations to simplify definitions of incrementing numbers. Because it can be used in expressions, it provides a generality beyond that of simple enumerations
  93. ^"A Tutorial for the Go Programming Language".The Go Programming Language. RetrievedMarch 10, 2013.In Go the rule about visibility of information is simple: if a name (of a top-level type, function, method, constant or variable, or of a structure field or method) is capitalized, users of the package may see it. Otherwise, the name and hence the thing being named is visible only inside the package in which it is declared.
  94. ^"go".The Go Programming Language.
  95. ^"How to Write Go Code".The Go Programming Language.The packages from the standard library are given short import paths such as "fmt" and "net/http". For your own packages, you must choose a base path that is unlikely to collide with future additions to the standard library or other external libraries. If you keep your code in a source repository somewhere, then you should use the root of that source repository as your base path. For instance, if you have an Example account at example.com/user, that should be your base path
  96. ^abPike, Rob (September 18, 2012)."Concurrency is not Parallelism".
  97. ^abDonovan, Alan A. A.; Kernighan, Brian W. (2016).The Go programming language. Addison-Wesley professional computing series. New York, Munich: Addison-Wesley.ISBN 978-0-13-419044-0.
  98. ^abcdeChisnall, David (2012).The Go Programming Language Phrasebook. Addison-Wesley.ISBN 9780132919005.
  99. ^"Effective Go".The Go Programming Language.
  100. ^Summerfield, Mark (2012).Programming in Go: Creating Applications for the 21st Century. Addison-Wesley.
  101. ^"The Go Memory Model". RetrievedApril 10, 2017.
  102. ^"Go Concurrency Patterns".The Go Programming Language.
  103. ^Graham-Cumming, John (August 24, 2013)."Recycling Memory Buffers in Go".The Cloudflare Blog.
  104. ^"tree.go".
  105. ^Cheslack-Postava, Ewen."Iterators in Go".
  106. ^Kernighan, Brian W."A Descent Into Limbo".
  107. ^ab"The Go Memory Model". RetrievedJanuary 5, 2011.
  108. ^Tang, Peiyi (2010).Multi-core parallel programming in Go(PDF). Proc. First International Conference on Advanced Computing and Communications. Archived fromthe original(PDF) on September 9, 2016. RetrievedMay 14, 2015.
  109. ^Nanz, Sebastian; West, Scott; Soares Da Silveira, Kaue.Examining the expert gap in parallel programming(PDF). Euro-Par 2013.CiteSeerX 10.1.1.368.6137.
  110. ^Go Authors."Share Memory By Communicating".
  111. ^Cox, Russ."Off to the Races".
  112. ^Pike, Rob (October 25, 2012)."Go at Google: Language Design in the Service of Software Engineering". Google, Inc. "There is one important caveat: Go is not purely memory safe in the presence of concurrency."
  113. ^"Introducing the Go Race Detector".The Go Blog. RetrievedJune 26, 2013.
  114. ^"Go 1.6 Release Notes - The Go Programming Language".go.dev. RetrievedNovember 17, 2023.
  115. ^"Frequently Asked Questions (FAQ) - the Go Programming Language".
  116. ^"A Story of a Fat Go Binary". September 21, 2018.
  117. ^"Go Programming Language Specification, §Interface types".The Go Programming Language.
  118. ^"Go Programming Language Specification, §Type assertions".The Go Programming Language.
  119. ^"All Systems Are Go".informIT (Interview). August 17, 2010. RetrievedJune 21, 2018.
  120. ^"Language Design FAQ". November 13, 2009. Archived fromthe original on November 13, 2009.
  121. ^"Proposal for an exception-like mechanism".golang-nuts. March 25, 2010. RetrievedMarch 25, 2010.
  122. ^"Weekly Snapshot History".The Go Programming Language.
  123. ^"Panic And Recover". Go wiki.
  124. ^"Effective Go".The Go Programming Language.
  125. ^"gofmt".The Go Programming Language. RetrievedFebruary 5, 2021.
  126. ^"golang/lint public archive".github.com. November 30, 2022.
  127. ^ab"Effective Go".The Go Programming Language.
  128. ^"Unused local variables".yourbasic.org. RetrievedFebruary 11, 2021.
  129. ^"Unused package imports".yourbasic.org. RetrievedFebruary 11, 2021.
  130. ^"Code Review Comments".GitHub. RetrievedJuly 3, 2018.
  131. ^"Talks". RetrievedJuly 3, 2018.
  132. ^"Errors Are Values". RetrievedJuly 3, 2018.
  133. ^"tools/gopls/README.md at master · golang/tools".GitHub. RetrievedNovember 17, 2023.
  134. ^"fmt".The Go Programming Language. RetrievedApril 8, 2019.
  135. ^"testing".The Go Programming Language. RetrievedDecember 27, 2020.
  136. ^"http package - net/http - Go Packages".pkg.go.dev. RetrievedNovember 23, 2024.
  137. ^Lee, Wei-Meng (November 24, 2022)."Introduction to the Go Programming Language".Component Developer Magazine. Archived fromthe original on June 5, 2023. RetrievedSeptember 8, 2023.
  138. ^Hoffmann, Frank; Neumeyer, Mandy (August 2018)."Simply Secure".Linux Magazine. No. 213. Archived fromthe original on May 28, 2023. RetrievedSeptember 8, 2023.
  139. ^Lee, Wei-Meng (August 31, 2022)."Introduction to Containerization Using Docker".CODE Magazine.Archived from the original on May 30, 2023. RetrievedSeptember 8, 2023.
  140. ^Pirker, Alexander (February 24, 2023)."Kubernetes Security for Starters".CODE Magazine.Archived from the original on April 1, 2023. RetrievedSeptember 8, 2023.
  141. ^Taft, Rebecca; Sharif, Irfan; Matei, Andrei; Van Benschoten, Nathan; Lewis, Jordan; Grieger, Tobias; Niemi, Kai; Woods, Andy; Birzin, Anne; Poss, Raphael; Bardea, Paul; Ranade, Amruta; Darnell, Ben; Gruneir, Bram; Jaffray, Justin; Zhang, Lucy; Mattis, Peter (June 11, 2020). "CockroachDB: The Resilient Geo-Distributed SQL Database".Proceedings of the 2020 ACM SIGMOD International Conference on Management of Data.SIGMOD '20. pp. 1493–1509.doi:10.1145/3318464.3386134.ISBN 978-1-4503-6735-6.
  142. ^Hopkins, Brandon (September 13, 2022)."Static Site Generation with Hugo".Linux Journal.Archived from the original on April 8, 2023. RetrievedSeptember 8, 2023.
  143. ^Simionato, Michele (November 15, 2009)."Interfaces vs Inheritance (or, watch out for Go!)". artima. RetrievedNovember 15, 2009.
  144. ^Astels, Dave (November 9, 2009)."Ready, Set, Go!". engineyard. Archived fromthe original on October 19, 2018. RetrievedNovember 9, 2009.
  145. ^jt (January 11, 2010)."Google's Go Wins Programming Language Of The Year Award". jaxenter. RetrievedDecember 5, 2012.
  146. ^"TIOBE Programming Community Index for June 2015". TIOBE Software. June 2015. RetrievedJuly 5, 2015.
  147. ^"TIOBE Index".TIOBE. RetrievedJuly 15, 2024.
  148. ^Eckel, Bruce (August 27, 2011)."Calling Go from Python via JSON-RPC". RetrievedAugust 29, 2011.
  149. ^Hundt, Robert (2011).Loop recognition in C++/Java/Go/Scala(PDF). Scala Days.
  150. ^Metz, Cade (July 1, 2011)."Google Go strikes back with C++ bake-off".The Register.
  151. ^Yager, Will."Why Go is not Good". RetrievedNovember 4, 2018.
  152. ^Dobronszki, Janos."Everyday Hassles in Go". RetrievedNovember 4, 2018.
  153. ^"Why are there braces but no semicolons? And why can't I put the opening brace on the next line?". RetrievedMarch 26, 2020.The advantages of a single, programmatically mandated format for all Go programs greatly outweigh any perceived disadvantages of the particular style.
  154. ^"I want off Mr. Golang's Wild Ride". February 28, 2020. RetrievedNovember 17, 2020.
  155. ^"proposal: os: Create/Open/OpenFile() set FILE_SHARE_DELETE on windows #32088".GitHub. May 16, 2019. RetrievedNovember 17, 2020.
  156. ^Tu, Tengfei (2019)."Understanding Real-World Concurrency Bugs in Go"(PDF).For example, around 58% of blocking bugs are caused by message passing. In addition to the violation of Go's channel usage rules (e.g., waiting on a channel that no one sends data to or close), many concurrency bugs are caused by the mixed usage of message passing and other new semantics and new libraries in Go, which can easily be overlooked but hard to detect
  157. ^Brownlee, John (November 13, 2009)."Google didn't google "Go" before naming their programming language'". Archived fromthe original on December 8, 2015. RetrievedMay 26, 2016.
  158. ^Claburn, Thomas (November 11, 2009)."Google 'Go' Name Brings Accusations Of Evil'". InformationWeek. Archived fromthe original on July 22, 2010. RetrievedJanuary 18, 2010.
  159. ^ab"Issue 9 - go — I have already used the name for *MY* programming language".Github.Google Inc. RetrievedOctober 12, 2010.

Further reading

[edit]

External links

[edit]
Wikimedia Commons has media related toGo (programming language).
Google free and open-source software
Software
Applications
Programming languages
Frameworks and
development tools
Operating systems
Related
Operating systems
Programming languages
Software
Publications
Other
Operating systems
Programming languages
Software
Associated institutions
Other
International
National
Other
Retrieved from "https://en.wikipedia.org/w/index.php?title=Go_(programming_language)&oldid=1320136790"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp