go_faq.html 69.7 KB
Newer Older
1
<!--{
2
	"Title": "Frequently Asked Questions (FAQ)",
Russ Cox's avatar
Russ Cox committed
3
	"Path": "/doc/faq"
4
}-->
Russ Cox's avatar
Russ Cox committed
5 6 7 8 9 10 11 12 13

<h2 id="Origins">Origins</h2>

<h3 id="What_is_the_purpose_of_the_project">
What is the purpose of the project?</h3>

<p>
No major systems language has emerged in over a decade, but over that time
the computing landscape has changed tremendously. There are several trends:
14
</p>
Russ Cox's avatar
Russ Cox committed
15 16 17 18 19 20

<ul>
<li>
Computers are enormously quicker but software development is not faster.
<li>
Dependency management is a big part of software development today but the
Russ Cox's avatar
Russ Cox committed
21
&ldquo;header files&rdquo; of languages in the C tradition are antithetical to clean
Russ Cox's avatar
Russ Cox committed
22 23 24 25
dependency analysis&mdash;and fast compilation.
<li>
There is a growing rebellion against cumbersome type systems like those of
Java and C++, pushing people towards dynamically typed languages such as
26
Python and JavaScript.
Russ Cox's avatar
Russ Cox committed
27 28 29 30 31 32 33 34 35 36
<li>
Some fundamental concepts such as garbage collection and parallel computation
are not well supported by popular systems languages.
<li>
The emergence of multicore computers has generated worry and confusion.
</ul>

<p>
We believe it's worth trying again with a new language, a concurrent,
garbage-collected language with fast compilation. Regarding the points above:
37
</p>
Russ Cox's avatar
Russ Cox committed
38 39 40

<ul>
<li>
41
It is possible to compile a large Go program in a few seconds on a single computer.
Russ Cox's avatar
Russ Cox committed
42 43 44 45 46
<li>
Go provides a model for software construction that makes dependency
analysis easy and avoids much of the overhead of C-style include files and
libraries.
<li>
47 48
Go's type system has no hierarchy, so no time is spent defining the
relationships between types. Also, although Go has static types the language
Russ Cox's avatar
Russ Cox committed
49 50 51 52 53 54 55 56 57
attempts to make types feel lighter weight than in typical OO languages.
<li>
Go is fully garbage-collected and provides fundamental support for
concurrent execution and communication.
<li>
By its design, Go proposes an approach for the construction of system
software on multicore machines.
</ul>

58 59
<p>
A much more expansive answer to this question is available in the article,
60
<a href="//talks.golang.org/2012/splash.article">Go at Google:
61 62
Language Design in the Service of Software Engineering</a>.

Rob Pike's avatar
Rob Pike committed
63 64 65 66 67 68
<h3 id="What_is_the_status_of_the_project">
What is the status of the project?</h3>

<p>
Go became a public open source project on November 10, 2009.
After a couple of years of very active design and development, stability was called for and
69
Go 1 was <a href="//blog.golang.org/2012/03/go-version-1-is-released.html">released</a>
Rob Pike's avatar
Rob Pike committed
70
on March 28, 2012.
71
Go 1, which includes a <a href="/ref/spec">language specification</a>,
Rob Pike's avatar
Rob Pike committed
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
<a href="/pkg/">standard libraries</a>,
and <a href="/cmd/go/">custom tools</a>,
provides a stable foundation for creating reliable products, projects, and publications.
</p>

<p>
With that stability established, we are using Go to develop programs, products, and tools rather than
actively changing the language and libraries.
In fact, the purpose of Go 1 is to provide <a href="/doc/go1compat.html">long-term stability</a>.
Backwards-incompatible changes will not be made to any Go 1 point release.
We want to use what we have to learn how a future version of Go might look, rather than to play with
the language underfoot.
</p>

<p>
Of course, development will continue on Go itself, but the focus will be on performance, reliability,
portability and the addition of new functionality such as improved support for internationalization.
</p>

<p>
There may well be a Go 2 one day, but not for a few years and it will be influenced by what we learn using Go 1 as it is today.
</p>

Russ Cox's avatar
Russ Cox committed
95 96 97 98
<h3 id="What_is_the_origin_of_the_name">
What is the origin of the name?</h3>

<p>
Russ Cox's avatar
Russ Cox committed
99
&ldquo;Ogle&rdquo; would be a good name for a Go debugger.
Evan Shaw's avatar
Evan Shaw committed
100
</p>
Russ Cox's avatar
Russ Cox committed
101

102 103 104 105 106 107 108 109
<h3 id="Whats_the_origin_of_the_mascot">
What's the origin of the mascot?</h3>

<p>
The mascot and logo were designed by
<a href="http://reneefrench.blogspot.com">Renée French</a>, who also designed
<a href="http://plan9.bell-labs.com/plan9/glenda.html">Glenda</a>,
the Plan 9 bunny.
Rob Pike's avatar
Rob Pike committed
110 111
The <a href="https://blog.golang.org/gopher">gopher</a>
is derived from one she used for an <a href="http://wfmu.org/">WFMU</a>
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
T-shirt design some years ago.
The logo and mascot are covered by the
<a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a>
license.
</p>

<h3 id="history">
What is the history of the project?</h3>
<p>
Robert Griesemer, Rob Pike and Ken Thompson started sketching the
goals for a new language on the white board on September 21, 2007.
Within a few days the goals had settled into a plan to do something
and a fair idea of what it would be.  Design continued part-time in
parallel with unrelated work.  By January 2008, Ken had started work
on a compiler with which to explore ideas; it generated C code as its
output.  By mid-year the language had become a full-time project and
had settled enough to attempt a production compiler.  In May 2008,
Ian Taylor independently started on a GCC front end for Go using the
draft specification.  Russ Cox joined in late 2008 and helped move the language
and libraries from prototype to reality.
</p>

<p>
135 136
Go became a public open source project on November 10, 2009.
Many people from the community have contributed ideas, discussions, and code.
137 138 139 140 141 142 143 144 145 146 147 148 149 150
</p>

<h3 id="creating_a_new_language">
Why are you creating a new language?</h3>
<p>
Go was born out of frustration with existing languages and
environments for systems programming.  Programming had become too
difficult and the choice of languages was partly to blame.  One had to
choose either efficient compilation, efficient execution, or ease of
programming; all three were not available in the same mainstream
language.  Programmers who could were choosing ease over
safety and efficiency by moving to dynamically typed languages such as
Python and JavaScript rather than C++ or, to a lesser extent, Java.
</p>
Evan Shaw's avatar
Evan Shaw committed
151

152 153 154 155 156
<p>
Go is an attempt to combine the ease of programming of an interpreted,
dynamically typed
language with the efficiency and safety of a statically typed, compiled language.
It also aims to be modern, with support for networked and multicore
Rob Pike's avatar
Rob Pike committed
157
computing.  Finally, working with Go is intended to be <i>fast</i>: it should take
158 159 160 161 162 163 164
at most a few seconds to build a large executable on a single computer.
To meet these goals required addressing a number of
linguistic issues: an expressive but lightweight type system;
concurrency and garbage collection; rigid dependency specification;
and so on.  These cannot be addressed well by libraries or tools; a new
language was called for.
</p>
Russ Cox's avatar
Russ Cox committed
165

166
<p>
167
The article <a href="//talks.golang.org/2012/splash.article">Go at Google</a>
168 169 170 171
discusses the background and motivation behind the design of the Go language,
as well as providing more detail about many of the answers presented in this FAQ.
</p>

172 173
<h3 id="ancestors">
What are Go's ancestors?</h3>
174
<p>
175 176 177 178 179 180 181 182 183 184
Go is mostly in the C family (basic syntax),
with significant input from the Pascal/Modula/Oberon
family (declarations, packages),
plus some ideas from languages
inspired by Tony Hoare's CSP,
such as Newsqueak and Limbo (concurrency).
However, it is a new language across the board.
In every respect the language was designed by thinking
about what programmers do and how to make programming, at least the
kind of programming we do, more effective, which means more fun.
185 186
</p>

187 188
<h3 id="principles">
What are the guiding principles in the design?</h3>
189
<p>
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
Programming today involves too much bookkeeping, repetition, and
clerical work.  As Dick Gabriel says, &ldquo;Old programs read
like quiet conversations between a well-spoken research worker and a
well-studied mechanical colleague, not as a debate with a compiler.
Who'd have guessed sophistication bought such noise?&rdquo;
The sophistication is worthwhile&mdash;no one wants to go back to
the old languages&mdash;but can it be more quietly achieved?
</p>
<p>
Go attempts to reduce the amount of typing in both senses of the word.
Throughout its design, we have tried to reduce clutter and
complexity.  There are no forward declarations and no header files;
everything is declared exactly once.  Initialization is expressive,
automatic, and easy to use.  Syntax is clean and light on keywords.
Stuttering (<code>foo.Foo* myFoo = new(foo.Foo)</code>) is reduced by
simple type derivation using the <code>:=</code>
declare-and-initialize construct.  And perhaps most radically, there
is no type hierarchy: types just <i>are</i>, they don't have to
announce their relationships.  These simplifications allow Go to be
expressive yet comprehensible without sacrificing, well, sophistication.
</p>
<p>
Another important principle is to keep the concepts orthogonal.
Methods can be implemented for any type; structures represent data while
interfaces represent abstraction; and so on.  Orthogonality makes it
easier to understand what happens when things combine.
216 217
</p>

Russ Cox's avatar
Russ Cox committed
218 219
<h2 id="Usage">Usage</h2>

Andrew Gerrand's avatar
Andrew Gerrand committed
220
<h3 id="Is_Google_using_go_internally"> Is Google using Go internally?</h3>
221

Evan Shaw's avatar
Evan Shaw committed
222
<p>
223
Yes. There are now several Go programs deployed in
Rob Pike's avatar
Rob Pike committed
224
production inside Google.  A public example is the server behind
225
<a href="//golang.org">golang.org</a>.
Rob Pike's avatar
Rob Pike committed
226 227
It's just the <a href="/cmd/godoc"><code>godoc</code></a>
document server running in a production configuration on
Dave Cheney's avatar
Dave Cheney committed
228
<a href="https://developers.google.com/appengine/">Google App Engine</a>.
Evan Shaw's avatar
Evan Shaw committed
229
</p>
230

231
<p>
Emil Hessman's avatar
Emil Hessman committed
232
Other examples include the <a href="//github.com/youtube/vitess/">Vitess</a>
233 234 235 236 237
system for large-scale SQL installations and Google's download server, <code>dl.google.com</code>,
which delivers Chrome binaries and other large installables such as <code>apt-get</code>
packages.
</p>

Russ Cox's avatar
Russ Cox committed
238 239 240 241
<h3 id="Do_Go_programs_link_with_Cpp_programs">
Do Go programs link with C/C++ programs?</h3>

<p>
242
There are two Go compiler implementations, <code>gc</code>
243
and <code>gccgo</code>.
244
<code>Gc</code> uses a different calling convention and linker and can
Russ Cox's avatar
Russ Cox committed
245
therefore only be linked with C programs using the same convention.
246 247 248
There is such a C compiler but no C++ compiler.
<code>Gccgo</code> is a GCC front-end that can, with care, be linked with
GCC-compiled C or C++ programs.
Evan Shaw's avatar
Evan Shaw committed
249
</p>
Russ Cox's avatar
Russ Cox committed
250 251

<p>
252 253
The <a href="/cmd/cgo/">cgo</a> program provides the mechanism for a
&ldquo;foreign function interface&rdquo; to allow safe calling of
Andrew Gerrand's avatar
Andrew Gerrand committed
254
C libraries from Go code. SWIG extends this capability to C++ libraries.
Evan Shaw's avatar
Evan Shaw committed
255 256
</p>

Russ Cox's avatar
Russ Cox committed
257

258 259
<h3 id="Does_Go_support_Google_protocol_buffers">
Does Go support Google's protocol buffers?</h3>
Russ Cox's avatar
Russ Cox committed
260 261

<p>
262 263
A separate open source project provides the necessary compiler plugin and library.
It is available at
Emil Hessman's avatar
Emil Hessman committed
264
<a href="//github.com/golang/protobuf">github.com/golang/protobuf/</a>
265
</p>
Russ Cox's avatar
Russ Cox committed
266

Evan Shaw's avatar
Evan Shaw committed
267

268 269 270 271 272
<h3 id="Can_I_translate_the_Go_home_page">
Can I translate the Go home page into another language?</h3>

<p>
Absolutely. We encourage developers to make Go Language sites in their own languages.
273
However, if you choose to add the Google logo or branding to your site
274
(it does not appear on <a href="//golang.org/">golang.org</a>),
275
you will need to abide by the guidelines at
276
<a href="//www.google.com/permissions/guidelines.html">www.google.com/permissions/guidelines.html</a>
277 278
</p>

Russ Cox's avatar
Russ Cox committed
279 280
<h2 id="Design">Design</h2>

281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
<h3 id="unicode_identifiers">
What's up with Unicode identifiers?</h3>

<p>
It was important to us to extend the space of identifiers from the
confines of ASCII.  Go's rule&mdash;identifier characters must be
letters or digits as defined by Unicode&mdash;is simple to understand
and to implement but has restrictions.  Combining characters are
excluded by design, for instance.
Until there
is an agreed external definition of what an identifier might be,
plus a definition of canonicalization of identifiers that guarantees
no ambiguity, it seemed better to keep combining characters out of
the mix.  Thus we have a simple rule that can be expanded later
without breaking programs, one that avoids bugs that would surely arise
from a rule that admits ambiguous identifiers.
</p>

<p>
On a related note, since an exported identifier must begin with an
upper-case letter, identifiers created from &ldquo;letters&rdquo;
in some languages can, by definition, not be exported.  For now the
only solution is to use something like <code>X日本語</code>, which
is clearly unsatisfactory; we are considering other options.  The
case-for-visibility rule is unlikely to change however; it's one
of our favorite features of Go.
</p>

<h3 id="Why_doesnt_Go_have_feature_X">Why does Go not have feature X?</h3>
Russ Cox's avatar
Russ Cox committed
310 311 312 313 314 315 316 317 318

<p>
Every language contains novel features and omits someone's favorite
feature. Go was designed with an eye on felicity of programming, speed of
compilation, orthogonality of concepts, and the need to support features
such as concurrency and garbage collection. Your favorite feature may be
missing because it doesn't fit, because it affects compilation speed or
clarity of design, or because it would make the fundamental system model
too difficult.
Evan Shaw's avatar
Evan Shaw committed
319
</p>
Russ Cox's avatar
Russ Cox committed
320 321

<p>
322 323
If it bothers you that Go is missing feature <var>X</var>,
please forgive us and investigate the features that Go does have. You might find that
Russ Cox's avatar
Russ Cox committed
324
they compensate in interesting ways for the lack of <var>X</var>.
Evan Shaw's avatar
Evan Shaw committed
325
</p>
Russ Cox's avatar
Russ Cox committed
326

327 328 329 330 331 332
<h3 id="generics">
Why does Go not have generic types?</h3>
<p>
Generics may well be added at some point.  We don't feel an urgency for
them, although we understand some programmers do.
</p>
Evan Shaw's avatar
Evan Shaw committed
333

334 335 336 337 338 339 340 341 342
<p>
Generics are convenient but they come at a cost in
complexity in the type system and run-time.  We haven't yet found a
design that gives value proportionate to the complexity, although we
continue to think about it.  Meanwhile, Go's built-in maps and slices,
plus the ability to use the empty interface to construct containers
(with explicit unboxing) mean in many cases it is possible to write
code that does what generics would enable, if less smoothly.
</p>
Evan Shaw's avatar
Evan Shaw committed
343

344 345 346
<p>
This remains an open issue.
</p>
Russ Cox's avatar
Russ Cox committed
347

348 349 350 351 352 353 354 355 356
<h3 id="exceptions">
Why does Go not have exceptions?</h3>
<p>
We believe that coupling exceptions to a control
structure, as in the <code>try-catch-finally</code> idiom, results in
convoluted code.  It also tends to encourage programmers to label
too many ordinary errors, such as failing to open a file, as
exceptional.
</p>
Evan Shaw's avatar
Evan Shaw committed
357

Russ Cox's avatar
Russ Cox committed
358
<p>
359 360
Go takes a different approach.  For plain error handling, Go's multi-value
returns make it easy to report an error without overloading the return value.
Shenghou Ma's avatar
Shenghou Ma committed
361 362 363
<a href="/doc/articles/error_handling.html">A canonical error type, coupled
with Go's other features</a>, makes error handling pleasant but quite different
from that in other languages.
364 365 366 367
</p>

<p>
Go also has a couple
368 369 370 371 372 373
of built-in functions to signal and recover from truly exceptional
conditions.  The recovery mechanism is executed only as part of a
function's state being torn down after an error, which is sufficient
to handle catastrophe but requires no extra control structures and,
when used well, can result in clean error-handling code.
</p>
Evan Shaw's avatar
Evan Shaw committed
374

Andrew Gerrand's avatar
Andrew Gerrand committed
375
<p>
Shenghou Ma's avatar
Shenghou Ma committed
376
See the <a href="/doc/articles/defer_panic_recover.html">Defer, Panic, and Recover</a> article for details.
Andrew Gerrand's avatar
Andrew Gerrand committed
377
</p>
378 379 380 381 382 383 384 385 386 387 388 389 390

<h3 id="assertions">
Why does Go not have assertions?</h3>

<p>
Go doesn't provide assertions. They are undeniably convenient, but our
experience has been that programmers use them as a crutch to avoid thinking
about proper error handling and reporting. Proper error handling means that
servers continue operation after non-fatal errors instead of crashing.
Proper error reporting means that errors are direct and to the point,
saving the programmer from interpreting a large crash trace. Precise
errors are particularly important when the programmer seeing the errors is
not familiar with the code.
Evan Shaw's avatar
Evan Shaw committed
391
</p>
392 393 394 395 396

<p>
We understand that this is a point of contention. There are many things in
the Go language and libraries that differ from modern practices, simply
because we feel it's sometimes worth trying a different approach.
Evan Shaw's avatar
Evan Shaw committed
397
</p>
398 399 400 401 402

<h3 id="csp">
Why build concurrency on the ideas of CSP?</h3>
<p>
Concurrency and multi-threaded programming have a reputation
Rob Pike's avatar
Rob Pike committed
403
for difficulty.  We believe this is due partly to complex
404
designs such as pthreads and partly to overemphasis on low-level details
405
such as mutexes, condition variables, and memory barriers.
406 407 408
Higher-level interfaces enable much simpler code, even if there are still
mutexes and such under the covers.
</p>
Evan Shaw's avatar
Evan Shaw committed
409

410 411 412 413 414 415
<p>
One of the most successful models for providing high-level linguistic support
for concurrency comes from Hoare's Communicating Sequential Processes, or CSP.
Occam and Erlang are two well known languages that stem from CSP.
Go's concurrency primitives derive from a different part of the family tree
whose main contribution is the powerful notion of channels as first class objects.
416 417
Experience with several earlier languages has shown that the CSP model
fits well into a procedural language framework.
418 419 420 421 422 423 424
</p>

<h3 id="goroutines">
Why goroutines instead of threads?</h3>
<p>
Goroutines are part of making concurrency easy to use.  The idea, which has
been around for a while, is to multiplex independently executing
425
functions&mdash;coroutines&mdash;onto a set of threads.
426 427 428 429
When a coroutine blocks, such as by calling a blocking system call,
the run-time automatically moves other coroutines on the same operating
system thread to a different, runnable thread so they won't be blocked.
The programmer sees none of this, which is the point.
430 431
The result, which we call goroutines, can be very cheap: they have little
overhead beyond the memory for the stack, which is just a few kilobytes.
432
</p>
Evan Shaw's avatar
Evan Shaw committed
433

434
<p>
435
To make the stacks small, Go's run-time uses resizable, bounded stacks.  A newly
436
minted goroutine is given a few kilobytes, which is almost always enough.
437 438 439 440
When it isn't, the run-time grows (and shrinks) the memory for storing
the stack automatically, allowing many goroutines to live in a modest
amount of memory.
The CPU overhead averages about three cheap instructions per function call.
441
It is practical to create hundreds of thousands of goroutines in the same
442 443
address space.
If goroutines were just threads, system resources would
444 445 446 447 448 449 450 451
run out at a much smaller number.
</p>

<h3 id="atomic_maps">
Why are map operations not defined to be atomic?</h3>

<p>
After long discussion it was decided that the typical use of maps did not require
452
safe access from multiple goroutines, and in those cases where it did, the map was
453 454 455 456 457 458 459 460 461 462 463 464
probably part of some larger data structure or computation that was already
synchronized.  Therefore requiring that all map operations grab a mutex would slow
down most programs and add safety to few.  This was not an easy decision,
however, since it means uncontrolled map access can crash the program.
</p>

<p>
The language does not preclude atomic map updates.  When required, such
as when hosting an untrusted program, the implementation could interlock
map access.
</p>

465 466 467 468 469
<h3 id="language_changes">
Will you accept my language change?</h3>

<p>
People often suggest improvements to the language—the
470
<a href="//groups.google.com/group/golang-nuts">mailing list</a>
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
contains a rich history of such discussions—but very few of these changes have
been accepted.
</p>

<p>
Although Go is an open source project, the language and libraries are protected
by a <a href="/doc/go1compat.html">compatibility promise</a> that prevents
changes that break existing programs.
If your proposal violates the Go 1 specification we cannot even entertain the
idea, regardless of its merit.
A future major release of Go may be incompatible with Go 1, but we're not ready
to start talking about what that might be.
</p>

<p>
486
Even if your proposal is compatible with the Go 1 spec, it might
487
not be in the spirit of Go's design goals.
488
The article <i><a href="//talks.golang.org/2012/splash.article">Go
489 490 491 492
at Google: Language Design in the Service of Software Engineering</a></i>
explains Go's origins and the motivation behind its design.
</p>

493
<h2 id="types">Types</h2>
Russ Cox's avatar
Russ Cox committed
494 495 496 497 498 499 500

<h3 id="Is_Go_an_object-oriented_language">
Is Go an object-oriented language?</h3>

<p>
Yes and no. Although Go has types and methods and allows an
object-oriented style of programming, there is no type hierarchy.
Russ Cox's avatar
Russ Cox committed
501
The concept of &ldquo;interface&rdquo; in Go provides a different approach that
Russ Cox's avatar
Russ Cox committed
502 503 504
we believe is easy to use and in some ways more general. There are
also ways to embed types in other types to provide something
analogous&mdash;but not identical&mdash;to subclassing.
505
Moreover, methods in Go are more general than in C++ or Java:
Rob Pike's avatar
Rob Pike committed
506 507 508
they can be defined for any sort of data, even built-in types such
as plain, &ldquo;unboxed&rdquo; integers.
They are not restricted to structs (classes).
Evan Shaw's avatar
Evan Shaw committed
509
</p>
Russ Cox's avatar
Russ Cox committed
510 511

<p>
Rob Pike's avatar
Rob Pike committed
512
Also, the lack of a type hierarchy makes &ldquo;objects&rdquo; in Go feel much more
Russ Cox's avatar
Russ Cox committed
513
lightweight than in languages such as C++ or Java.
Evan Shaw's avatar
Evan Shaw committed
514
</p>
Russ Cox's avatar
Russ Cox committed
515 516 517 518 519 520

<h3 id="How_do_I_get_dynamic_dispatch_of_methods">
How do I get dynamic dispatch of methods?</h3>

<p>
The only way to have dynamically dispatched methods is through an
Rob Pike's avatar
Rob Pike committed
521
interface. Methods on a struct or any other concrete type are always resolved statically.
Evan Shaw's avatar
Evan Shaw committed
522
</p>
Russ Cox's avatar
Russ Cox committed
523

524 525 526 527 528 529 530 531
<h3 id="inheritance">
Why is there no type inheritance?</h3>
<p>
Object-oriented programming, at least in the best-known languages,
involves too much discussion of the relationships between types,
relationships that often could be derived automatically.  Go takes a
different approach.
</p>
Evan Shaw's avatar
Evan Shaw committed
532

533 534 535 536 537 538 539
<p>
Rather than requiring the programmer to declare ahead of time that two
types are related, in Go a type automatically satisfies any interface
that specifies a subset of its methods.  Besides reducing the
bookkeeping, this approach has real advantages.  Types can satisfy
many interfaces at once, without the complexities of traditional
multiple inheritance.
540 541
Interfaces can be very lightweight&mdash;an interface with
one or even zero methods can express a useful concept.
542 543 544 545 546
Interfaces can be added after the fact if a new idea comes along
or for testing&mdash;without annotating the original types.
Because there are no explicit relationships between types
and interfaces, there is no type hierarchy to manage or discuss.
</p>
Evan Shaw's avatar
Evan Shaw committed
547

548 549 550 551 552
<p>
It's possible to use these ideas to construct something analogous to
type-safe Unix pipes.  For instance, see how <code>fmt.Fprintf</code>
enables formatted printing to any output, not just a file, or how the
<code>bufio</code> package can be completely separate from file I/O,
Rob Pike's avatar
Rob Pike committed
553 554
or how the <code>image</code> packages generate compressed
image files.  All these ideas stem from a single interface
555 556
(<code>io.Writer</code>) representing a single method
(<code>Write</code>).  And that's only scratching the surface.
557
Go's interfaces have a profound influence on how programs are structured.
558
</p>
Evan Shaw's avatar
Evan Shaw committed
559

560 561
<p>
It takes some getting used to but this implicit style of type
562
dependency is one of the most productive things about Go.
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
</p>

<h3 id="methods_on_basics">
Why is <code>len</code> a function and not a method?</h3>
<p>
We debated this issue but decided
implementing <code>len</code> and friends as functions was fine in practice and
didn't complicate questions about the interface (in the Go type sense)
of basic types.
</p>

<h3 id="overloading">
Why does Go not support overloading of methods and operators?</h3>
<p>
Method dispatch is simplified if it doesn't need to do type matching as well.
Experience with other languages told us that having a variety of
methods with the same name but different signatures was occasionally useful
but that it could also be confusing and fragile in practice.  Matching only by name
and requiring consistency in the types was a major simplifying decision
in Go's type system.
</p>
Evan Shaw's avatar
Evan Shaw committed
584

585 586 587 588 589
<p>
Regarding operator overloading, it seems more a convenience than an absolute
requirement.  Again, things are simpler without it.
</p>

590 591 592 593 594 595
<h3 id="implements_interface">
Why doesn't Go have "implements" declarations?</h3>

<p>
A Go type satisfies an interface by implementing the methods of that interface,
nothing more.  This property allows interfaces to be defined and used without
Rob Pike's avatar
Rob Pike committed
596
having to modify existing code.  It enables a kind of structural typing that
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
promotes separation of concerns and improves code re-use, and makes it easier
to build on patterns that emerge as the code develops.
The semantics of interfaces is one of the main reasons for Go's nimble,
lightweight feel.
</p>

<p>
See the <a href="#inheritance">question on type inheritance</a> for more detail.
</p>

<h3 id="guarantee_satisfies_interface">
How can I guarantee my type satisfies an interface?</h3>

<p>
You can ask the compiler to check that the type <code>T</code> implements the
Rob Pike's avatar
Rob Pike committed
612 613
interface <code>I</code> by attempting an assignment using the zero value for
<code>T</code> or pointer to <code>T</code>, as appropriate:
614 615 616 617
</p>

<pre>
type T struct{}
Rob Pike's avatar
Rob Pike committed
618 619
var _ I = T{}       // Verify that T implements I.
var _ I = (*T)(nil) // Verify that *T implements I.
620 621 622
</pre>

<p>
Rob Pike's avatar
Rob Pike committed
623 624
If <code>T</code> (or <code>*T</code>, accordingly) doesn't implement
<code>I</code>, the mistake will be caught at compile time.
625 626 627 628 629 630 631 632 633 634
</p>

<p>
If you wish the users of an interface to explicitly declare that they implement
it, you can add a method with a descriptive name to the interface's method set.
For example:
</p>

<pre>
type Fooer interface {
Rob Pike's avatar
Rob Pike committed
635 636
    Foo()
    ImplementsFooer()
637 638 639 640 641
}
</pre>

<p>
A type must then implement the <code>ImplementsFooer</code> method to be a
642 643
<code>Fooer</code>, clearly documenting the fact and announcing it in
<a href="/cmd/godoc/">godoc</a>'s output.
644 645 646 647 648 649 650 651 652
</p>

<pre>
type Bar struct{}
func (b Bar) ImplementsFooer() {}
func (b Bar) Foo() {}
</pre>

<p>
653
Most code doesn't make use of such constraints, since they limit the utility of
654 655 656 657
the interface idea. Sometimes, though, they're necessary to resolve ambiguities
among similar interfaces.
</p>

658 659 660 661 662 663 664 665 666 667
<h3 id="t_and_equal_interface">
Why doesn't type T satisfy the Equal interface?</h3>

<p>
Consider this simple interface to represent an object that can compare
itself with another value:
</p>

<pre>
type Equaler interface {
Rob Pike's avatar
Rob Pike committed
668
    Equal(Equaler) bool
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
}
</pre>

<p>
and this type, <code>T</code>:
</p>

<pre>
type T int
func (t T) Equal(u T) bool { return t == u } // does not satisfy Equaler
</pre>

<p>
Unlike the analogous situation in some polymorphic type systems,
<code>T</code> does not implement <code>Equaler</code>.
The argument type of <code>T.Equal</code> is <code>T</code>,
not literally the required type <code>Equaler</code>.
</p>

<p>
In Go, the type system does not promote the argument of
<code>Equal</code>; that is the programmer's responsibility, as
illustrated by the type <code>T2</code>, which does implement
<code>Equaler</code>:
</p>

<pre>
type T2 int
func (t T2) Equal(u Equaler) bool { return t == u.(T2) }  // satisfies Equaler
</pre>

<p>
Even this isn't like other type systems, though, because in Go <em>any</em>
type that satisfies <code>Equaler</code> could be passed as the
argument to <code>T2.Equal</code>, and at run time we must
check that the argument is of type <code>T2</code>.
Some languages arrange to make that guarantee at compile time.
</p>

<p>
A related example goes the other way:
</p>

<pre>
type Opener interface {
David Symonds's avatar
David Symonds committed
714
   Open() Reader
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
}

func (t T3) Open() *os.File
</pre>

<p>
In Go, <code>T3</code> does not satisfy <code>Opener</code>,
although it might in another language.
</p>

<p>
While it is true that Go's type system does less for the programmer
in such cases, the lack of subtyping makes the rules about
interface satisfaction very easy to state: are the function's names
and signatures exactly those of the interface?
Go's rule is also easy to implement efficiently.
We feel these benefits offset the lack of
Rob Pike's avatar
Rob Pike committed
732
automatic type promotion. Should Go one day adopt some form of polymorphic
733 734 735 736
typing, we expect there would be a way to express the idea of these
examples and also have them be statically checked.
</p>

737 738 739 740
<h3 id="convert_slice_of_interface">
Can I convert a []T to an []interface{}?</h3>

<p>
Rob Pike's avatar
Rob Pike committed
741
Not directly, because they do not have the same representation in memory.
742 743 744 745 746 747 748 749 750
It is necessary to copy the elements individually to the destination
slice. This example converts a slice of <code>int</code> to a slice of
<code>interface{}</code>:
</p>

<pre>
t := []int{1, 2, 3, 4}
s := make([]interface{}, len(t))
for i, v := range t {
Rob Pike's avatar
Rob Pike committed
751
    s[i] = v
752 753 754
}
</pre>

755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
<h3 id="nil_error">
Why is my nil error value not equal to nil?
</h3>

<p>
Under the covers, interfaces are implemented as two elements, a type and a value.
The value, called the interface's dynamic value,
is an arbitrary concrete value and the type is that of the value.
For the <code>int</code> value 3, an interface value contains,
schematically, (<code>int</code>, <code>3</code>).
</p>

<p>
An interface value is <code>nil</code> only if the inner value and type are both unset,
(<code>nil</code>, <code>nil</code>).
In particular, a <code>nil</code> interface will always hold a <code>nil</code> type.
Rob Pike's avatar
Rob Pike committed
771
If we store a <code>nil</code> pointer of type <code>*int</code> inside
772 773 774 775 776 777 778
an interface value, the inner type will be <code>*int</code> regardless of the value of the pointer:
(<code>*int</code>, <code>nil</code>).
Such an interface value will therefore be non-<code>nil</code>
<em>even when the pointer inside is</em> <code>nil</code>.
</p>

<p>
Rob Pike's avatar
Rob Pike committed
779
This situation can be confusing, and arises when a <code>nil</code> value is
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
stored inside an interface value such as an <code>error</code> return:
</p>

<pre>
func returnsError() error {
	var p *MyError = nil
	if bad() {
		p = ErrBad
	}
	return p // Will always return a non-nil error.
}
</pre>

<p>
If all goes well, the function returns a <code>nil</code> <code>p</code>,
so the return value is an <code>error</code> interface
value holding (<code>*MyError</code>, <code>nil</code>).
This means that if the caller compares the returned error to <code>nil</code>,
it will always look as if there was an error even if nothing bad happened.
To return a proper <code>nil</code> <code>error</code> to the caller,
the function must return an explicit <code>nil</code>:
</p>


<pre>
func returnsError() error {
	if bad() {
		return ErrBad
	}
	return nil
}
</pre>

<p>
It's a good idea for functions
that return errors always to use the <code>error</code> type in
their signature (as we did above) rather than a concrete type such
as <code>*MyError</code>, to help guarantee the error is
created correctly. As an example,
<a href="/pkg/os/#Open"><code>os.Open</code></a>
returns an <code>error</code> even though, if not <code>nil</code>,
it's always of concrete type
<a href="/pkg/os/#PathError"><code>*os.PathError</code></a>.
</p>

<p>
Similar situations to those described here can arise whenever interfaces are used.
Just keep in mind that if any concrete value
has been stored in the interface, the interface will not be <code>nil</code>.
For more information, see
830
<a href="/doc/articles/laws_of_reflection.html">The Laws of Reflection</a>.
831 832 833
</p>


Rob Pike's avatar
Rob Pike committed
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869
<h3 id="unions">
Why are there no untagged unions, as in C?</h3>

<p>
Untagged unions would violate Go's memory safety
guarantees.
</p>

<h3 id="variant_types">
Why does Go not have variant types?</h3>

<p>
Variant types, also known as algebraic types, provide a way to specify
that a value might take one of a set of other types, but only those
types. A common example in systems programming would specify that an
error is, say, a network error, a security error or an application
error and allow the caller to discriminate the source of the problem
by examining the type of the error. Another example is a syntax tree
in which each node can be a different type: declaration, statement,
assignment and so on.
</p>

<p>
We considered adding variant types to Go, but after discussion
decided to leave them out because they overlap in confusing ways
with interfaces. What would happen if the elements of a variant type
were themselves interfaces?
</p>

<p>
Also, some of what variant types address is already covered by the
language. The error example is easy to express using an interface
value to hold the error and a type switch to discriminate cases.  The
syntax tree example is also doable, although not as elegantly.
</p>

870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
<h2 id="values">Values</h2>

<h3 id="conversions">
Why does Go not provide implicit numeric conversions?</h3>
<p>
The convenience of automatic conversion between numeric types in C is
outweighed by the confusion it causes.  When is an expression unsigned?
How big is the value?  Does it overflow?  Is the result portable, independent
of the machine on which it executes?
It also complicates the compiler; &ldquo;the usual arithmetic conversions&rdquo;
are not easy to implement and inconsistent across architectures.
For reasons of portability, we decided to make things clear and straightforward
at the cost of some explicit conversions in the code.
The definition of constants in Go&mdash;arbitrary precision values free
of signedness and size annotations&mdash;ameliorates matters considerably,
though.
</p>
Evan Shaw's avatar
Evan Shaw committed
887

888 889 890 891 892 893 894
<p>
A related detail is that, unlike in C, <code>int</code> and <code>int64</code>
are distinct types even if <code>int</code> is a 64-bit type.  The <code>int</code>
type is generic; if you care about how many bits an integer holds, Go
encourages you to be explicit.
</p>

Rob Pike's avatar
Rob Pike committed
895
<p>
896
A blog post titled <a href="https://blog.golang.org/constants">Constants</a>
Rob Pike's avatar
Rob Pike committed
897 898 899
explores this topic in more detail.
</p>

900 901 902 903 904 905 906 907 908 909 910 911
<h3 id="builtin_maps">
Why are maps built in?</h3>
<p>
The same reason strings are: they are such a powerful and important data
structure that providing one excellent implementation with syntactic support
makes programming more pleasant.  We believe that Go's implementation of maps
is strong enough that it will serve for the vast majority of uses.
If a specific application can benefit from a custom implementation, it's possible
to write one but it will not be as convenient syntactically; this seems a reasonable tradeoff.
</p>

<h3 id="map_keys">
Rob Pike's avatar
Rob Pike committed
912
Why don't maps allow slices as keys?</h3>
913
<p>
Rob Pike's avatar
Rob Pike committed
914
Map lookup requires an equality operator, which slices do not implement.
915 916
They don't implement equality because equality is not well defined on such types;
there are multiple considerations involving shallow vs. deep comparison, pointer vs.
Rob Pike's avatar
Rob Pike committed
917 918
value comparison, how to deal with recursive types, and so on.
We may revisit this issue&mdash;and implementing equality for slices
919
will not invalidate any existing programs&mdash;but without a clear idea of what
920
equality of slices should mean, it was simpler to leave it out for now.
921 922
</p>

Rob Pike's avatar
Rob Pike committed
923
<p>
924 925
In Go 1, unlike prior releases, equality is defined for structs and arrays, so such
types can be used as map keys. Slices still do not have a definition of equality, though.
Rob Pike's avatar
Rob Pike committed
926 927
</p>

928 929 930 931 932 933 934
<h3 id="references">
Why are maps, slices, and channels references while arrays are values?</h3>
<p>
There's a lot of history on that topic.  Early on, maps and channels
were syntactically pointers and it was impossible to declare or use a
non-pointer instance.  Also, we struggled with how arrays should work.
Eventually we decided that the strict separation of pointers and
935 936 937 938 939
values made the language harder to use.  Changing these
types to act as references to the associated, shared data structures resolved
these issues. This change added some regrettable complexity to the
language but had a large effect on usability: Go became a more
productive, comfortable language when it was introduced.
940 941
</p>

Russ Cox's avatar
Russ Cox committed
942 943 944 945 946 947 948 949 950
<h2 id="Writing_Code">Writing Code</h2>

<h3 id="How_are_libraries_documented">
How are libraries documented?</h3>

<p>
There is a program, <code>godoc</code>, written in Go, that extracts
package documentation from the source code. It can be used on the
command line or on the web. An instance is running at
951
<a href="/pkg/">golang.org/pkg/</a>.
Russ Cox's avatar
Russ Cox committed
952
In fact, <code>godoc</code> implements the full site at
953
<a href="/">golang.org/</a>.
Evan Shaw's avatar
Evan Shaw committed
954
</p>
Russ Cox's avatar
Russ Cox committed
955

Rob Pike's avatar
Rob Pike committed
956 957 958 959 960 961 962 963 964 965 966 967 968
<p>
A <code>godoc</code> instance may be configured to provide rich,
interactive static analyses of symbols in the programs it displays; details are
listed <a href="https://golang.org/lib/godoc/analysis/help.html">here</a>.
</p>

<p>
For access to documentation from the command line, the
<a href="https://golang.org/pkg/cmd/go/">go</a> tool has a
<a href="https://golang.org/pkg/cmd/go/#hdr-Show_documentation_for_package_or_symbol">doc</a>
subcommand that provides a textual interface to the same information.
</p>

Russ Cox's avatar
Russ Cox committed
969 970 971 972
<h3 id="Is_there_a_Go_programming_style_guide">
Is there a Go programming style guide?</h3>

<p>
973 974 975 976 977 978 979 980
Eventually, there may be a small number of rules to guide things
like naming, layout, and file organization.
The document <a href="effective_go.html">Effective Go</a>
contains some style advice.
More directly, the program <code>gofmt</code> is a pretty-printer
whose purpose is to enforce layout rules; it replaces the usual
compendium of do's and don'ts that allows interpretation.
All the Go code in the repository has been run through <code>gofmt</code>.
Evan Shaw's avatar
Evan Shaw committed
981
</p>
Russ Cox's avatar
Russ Cox committed
982

983 984
<p>
The document titled
985
<a href="//golang.org/s/comments">Go Code Review Comments</a>
986 987 988 989 990
is a collection of very short essays about details of Go idiom that are often
missed by programmers.
It is a handy reference for people doing code reviews for Go projects.
</p>

Russ Cox's avatar
Russ Cox committed
991 992 993
<h3 id="How_do_I_submit_patches_to_the_Go_libraries">
How do I submit patches to the Go libraries?</h3>

994
<p>
Rob Pike's avatar
Rob Pike committed
995
The library sources are in the <code>src</code> directory of the repository.
996
If you want to make a significant change, please discuss on the mailing list before embarking.
Evan Shaw's avatar
Evan Shaw committed
997
</p>
Russ Cox's avatar
Russ Cox committed
998

999 1000 1001 1002
<p>
See the document
<a href="contribute.html">Contributing to the Go project</a>
for more information about how to proceed.
Evan Shaw's avatar
Evan Shaw committed
1003
</p>
1004

1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
<h3 id="git_https">
Why does "go get" use HTTPS when cloning a repository?</h3>

<p>
Companies often permit outgoing traffic only on the standard TCP ports 80 (HTTP)
and 443 (HTTPS), blocking outgoing traffic on other ports, including TCP port 9418 
(git) and TCP port 22 (SSH).
When using HTTPS instead of HTTP, <code>git</code> enforces certificate validation by
default, providing protection against man-in-the-middle, eavesdropping and tampering attacks.
The <code>go get</code> command therefore uses HTTPS for safety.
</p>

<p>
If you use <code>git</code> and prefer to push changes through SSH using your existing key 
it's easy to work around this. For GitHub, try one of these solutions:
</p>
<ul>
<li>Manually clone the repository in the expected package directory:
<pre>
$ cd $GOPATH/src/github.com/username
$ git clone git@github.com:username/package.git
</pre>
</li>
<li>Force <code>git push</code> to use the <code>SSH</code> protocol by appending
these two lines to <code>~/.gitconfig</code>:
<pre>
[url "git@github.com:"]
	pushInsteadOf = https://github.com/
</pre>
</li>
</ul>

1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
<h3 id="get_version">
How should I manage package versions using "go get"?</h3>

<p>
"Go get" does not have any explicit concept of package versions.
Versioning is a source of significant complexity, especially in large code bases,
and we are unaware of any approach that works well at scale in a large enough
variety of situations to be appropriate to force on all Go users.
What "go get" and the larger Go toolchain do provide is isolation of
packages with different import paths.
For example, the standard library's <code>html/template</code> and <code>text/template</code>
coexist even though both are "package template".
This observation leads to some advice for package authors and package users.
</p>

<p>
Packages intended for public use should try to maintain backwards compatibility as they evolve.
The <a href="/doc/go1compat.html">Go 1 compatibility guidelines</a> are a good reference here:
don't remove exported names, encourage tagged composite literals, and so on.
If different functionality is required, add a new name instead of changing an old one.
If a complete break is required, create a new package with a new import path.</p>

<p>
If you're using an externally supplied package and worry that it might change in
unexpected ways, the simplest solution is to copy it to your local repository.
(This is the approach Google takes internally.)
Store the copy under a new import path that identifies it as a local copy.
For example, you might copy "original.com/pkg" to "you.com/external/original.com/pkg".
Rob Pike's avatar
Rob Pike committed
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
The <a href="https://godoc.org/golang.org/x/tools/cmd/gomvpkg">gomvpkg</a>
program is one tool to help automate this process.
</p>

<p>
The Go 1.5 release includes an experimental facility to the
<a href="https://golang.org/cmd/go">go</a> command
that makes it easier to manage external dependencies by "vendoring"
them into a special directory near the package that depends upon them.
See the <a href="https://golang.org/s/go15vendor">design
document</a> for details.
1076 1077
</p>

1078 1079 1080 1081
<h2 id="Pointers">Pointers and Allocation</h2>

<h3 id="pass_by_value">
When are function parameters passed by value?</h3>
Russ Cox's avatar
Russ Cox committed
1082 1083

<p>
Rob Pike's avatar
Rob Pike committed
1084 1085
As in all languages in the C family, everything in Go is passed by value.
That is, a function always gets a copy of the
1086
thing being passed, as if there were an assignment statement assigning the
Rob Pike's avatar
Rob Pike committed
1087 1088 1089
value to the parameter.  For instance, passing an <code>int</code> value
to a function makes a copy of the <code>int</code>, and passing a pointer
value makes a copy of the pointer, but not the data it points to.
Rob Pike's avatar
Rob Pike committed
1090 1091
(See a <a href="/doc/faq#methods_on_values_or_pointers">later
section</a> for a discussion of how this affects method receivers.)
1092
</p>
Russ Cox's avatar
Russ Cox committed
1093 1094

<p>
Rob Pike's avatar
Rob Pike committed
1095
Map and slice values behave like pointers: they are descriptors that
1096 1097 1098 1099 1100
contain pointers to the underlying map or slice data.  Copying a map or
slice value doesn't copy the data it points to.  Copying an interface value
makes a copy of the thing stored in the interface value.  If the interface
value holds a struct, copying the interface value makes a copy of the
struct.  If the interface value holds a pointer, copying the interface value
1101
makes a copy of the pointer, but again not the data it points to.
1102 1103
</p>

1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
<h3 id="pointer_to_interface">
When should I use a pointer to an interface?</h3>

<p>
Almost never. Pointers to interface values arise only in rare, tricky situations involving
disguising an interface value's type for delayed evaluation.
</p>

<p>
It is however a common mistake to pass a pointer to an interface value
to a function expecting an interface. The compiler will complain about this
error but the situation can still be confusing, because sometimes a
<a href="#different_method_sets">pointer
is necessary to satisfy an interface</a>.
The insight is that although a pointer to a concrete type can satisfy
1119
an interface, with one exception <em>a pointer to an interface can never satisfy an interface</em>.
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
</p>

<p>
Consider the variable declaration,
</p>

<pre>
var w io.Writer
</pre>

<p>
The printing function <code>fmt.Fprintf</code> takes as its first argument
a value that satisfies <code>io.Writer</code>—something that implements
the canonical <code>Write</code> method. Thus we can write
</p>

<pre>
fmt.Fprintf(w, "hello, world\n")
</pre>

<p>
If however we pass the address of <code>w</code>, the program will not compile.
</p>

<pre>
fmt.Fprintf(&amp;w, "hello, world\n") // Compile-time error.
</pre>

<p>
The one exception is that any value, even a pointer to an interface, can be assigned to
a variable of empty interface type (<code>interface{}</code>).
Even so, it's almost certainly a mistake if the value is a pointer to an interface;
the result can be confusing.
</p>

1155 1156 1157 1158
<h3 id="methods_on_values_or_pointers">
Should I define methods on values or pointers?</h3>

<pre>
1159 1160
func (s *MyStruct) pointerMethod() { } // method on pointer
func (s MyStruct)  valueMethod()   { } // method on value
1161
</pre>
Russ Cox's avatar
Russ Cox committed
1162 1163

<p>
1164 1165
For programmers unaccustomed to pointers, the distinction between these
two examples can be confusing, but the situation is actually very simple.
1166
When defining a method on a type, the receiver (<code>s</code> in the above
1167
examples) behaves exactly as if it were an argument to the method.
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
Whether to define the receiver as a value or as a pointer is the same
question, then, as whether a function argument should be a value or
a pointer.
There are several considerations.
</p>

<p>
First, and most important, does the method need to modify the
receiver?
If it does, the receiver <em>must</em> be a pointer.
1178
(Slices and maps act as references, so their story is a little
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
more subtle, but for instance to change the length of a slice
in a method the receiver must still be a pointer.)
In the examples above, if <code>pointerMethod</code> modifies
the fields of <code>s</code>,
the caller will see those changes, but <code>valueMethod</code>
is called with a copy of the caller's argument (that's the definition
of passing a value), so changes it makes will be invisible to the caller.
</p>

<p>
By the way, pointer receivers are identical to the situation in Java,
although in Java the pointers are hidden under the covers; it's Go's
value receivers that are unusual.
</p>

<p>
Second is the consideration of efficiency. If the receiver is large,
a big <code>struct</code> for instance, it will be much cheaper to
use a pointer receiver.
1198 1199
</p>

1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
<p>
Next is consistency. If some of the methods of the type must have
pointer receivers, the rest should too, so the method set is
consistent regardless of how the type is used.
See the section on <a href="#different_method_sets">method sets</a>
for details.
</p>

<p>
For types such as basic types, slices, and small <code>structs</code>,
a value receiver is very cheap so unless the semantics of the method
requires a pointer, a value receiver is efficient and clear.
</p>


1215 1216
<h3 id="new_and_make">
What's the difference between new and make?</h3>
Russ Cox's avatar
Russ Cox committed
1217 1218

<p>
1219 1220 1221 1222 1223 1224 1225 1226 1227
In short: <code>new</code> allocates memory, <code>make</code> initializes
the slice, map, and channel types.
</p>

<p>
See the <a href="/doc/effective_go.html#allocation_new">relevant section
of Effective Go</a> for more details.
</p>

1228
<h3 id="q_int_sizes">
1229
What is the size of an <code>int</code> on a 64 bit machine?</h3>
1230 1231

<p>
1232 1233
The sizes of <code>int</code> and <code>uint</code> are implementation-specific
but the same as each other on a given platform.
Russ Cox's avatar
Russ Cox committed
1234
For portability, code that relies on a particular
1235
size of value should use an explicitly sized type, like <code>int64</code>.
Russ Cox's avatar
Russ Cox committed
1236 1237 1238
Prior to Go 1.1, the 64-bit Go compilers (both gc and gccgo) used
a 32-bit representation for <code>int</code>. As of Go 1.1 they use
a 64-bit representation.
1239 1240 1241 1242 1243
On the other hand, floating-point scalars and complex
numbers are always sized: <code>float32</code>, <code>complex64</code>,
etc., because programmers should be aware of precision when using
floating-point numbers.
The default size of a floating-point constant is <code>float64</code>.
1244 1245
</p>

1246 1247 1248 1249 1250 1251 1252 1253
<h3 id="stack_or_heap">
How do I know whether a variable is allocated on the heap or the stack?</h3>

<p>
From a correctness standpoint, you don't need to know.
Each variable in Go exists as long as there are references to it.
The storage location chosen by the implementation is irrelevant to the
semantics of the language.
Evan Shaw's avatar
Evan Shaw committed
1254
</p>
1255 1256 1257 1258 1259 1260 1261 1262

<p>
The storage location does have an effect on writing efficient programs.
When possible, the Go compilers will allocate variables that are
local to a function in that function's stack frame.  However, if the
compiler cannot prove that the variable is not referenced after the
function returns, then the compiler must allocate the variable on the
garbage-collected heap to avoid dangling pointer errors.
Rob Pike's avatar
Rob Pike committed
1263 1264
Also, if a local variable is very large, it might make more sense
to store it on the heap rather than the stack.
Evan Shaw's avatar
Evan Shaw committed
1265
</p>
1266 1267

<p>
Rob Pike's avatar
Rob Pike committed
1268 1269 1270 1271
In the current compilers, if a variable has its address taken, that variable
is a candidate for allocation on the heap. However, a basic <em>escape
analysis</em> recognizes some cases when such variables will not
live past the return from the function and can reside on the stack.
Evan Shaw's avatar
Evan Shaw committed
1272
</p>
1273

1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289
<h3 id="Why_does_my_Go_process_use_so_much_virtual_memory">
Why does my Go process use so much virtual memory?</h3>

<p>
The Go memory allocator reserves a large region of virtual memory as an arena
for allocations. This virtual memory is local to the specific Go process; the
reservation does not deprive other processes of memory.
</p>

<p>
To find the amount of actual memory allocated to a Go process, use the Unix
<code>top</code> command and consult the <code>RES</code> (Linux) or
<code>RSIZE</code> (Mac OS X) columns.
<!-- TODO(adg): find out how this works on Windows -->
</p>

1290 1291 1292 1293 1294 1295 1296
<h2 id="Concurrency">Concurrency</h2>

<h3 id="What_operations_are_atomic_What_about_mutexes">
What operations are atomic? What about mutexes?</h3>

<p>
We haven't fully defined it all yet, but some details about atomicity are
1297
available in the <a href="/ref/mem">Go Memory Model specification</a>.
1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
</p>

<p>
Regarding mutexes, the <a href="/pkg/sync">sync</a>
package implements them, but we hope Go programming style will
encourage people to try higher-level techniques. In particular, consider
structuring your program so that only one goroutine at a time is ever
responsible for a particular piece of data.
</p>

<p>
Do not communicate by sharing memory. Instead, share memory by communicating.
</p>

Andrew Gerrand's avatar
Andrew Gerrand committed
1312
<p>
1313
See the <a href="/doc/codewalk/sharemem/">Share Memory By Communicating</a> code walk and its <a href="//blog.golang.org/2010/07/share-memory-by-communicating.html">associated article</a> for a detailed discussion of this concept.
Andrew Gerrand's avatar
Andrew Gerrand committed
1314 1315
</p>

1316 1317 1318 1319
<h3 id="Why_no_multi_CPU">
Why doesn't my multi-goroutine program use multiple CPUs?</h3>

<p>
Rob Pike's avatar
Rob Pike committed
1320 1321 1322 1323
The number of CPUs available simultaneously to executing goroutines is
controlled by the <code>GOMAXPROCS</code> shell environment variable.
In earlier releases of Go, the default value was 1, but as of Go 1.5 the default
value is the number of cores available.
Rob Pike's avatar
Rob Pike committed
1324
Therefore programs compiled after 1.5 should demonstrate parallel execution
Rob Pike's avatar
Rob Pike committed
1325 1326 1327 1328 1329
of multiple goroutines.
To change the behavior, set the environment variable or use the similarly-named
<a href="/pkg/runtime/#GOMAXPROCS">function</a>
of the runtime package to configure the
run-time support to utilize a different number of threads.
1330 1331 1332
</p>

<p>
Rob Pike's avatar
Rob Pike committed
1333
Programs that perform parallel computation might benefit from a further increase in
1334
<code>GOMAXPROCS</code>.
1335
However, be aware that
1336
<a href="//blog.golang.org/2013/01/concurrency-is-not-parallelism.html">concurrency
1337
is not parallelism</a>.
1338 1339 1340 1341 1342 1343 1344
</p>

<h3 id="Why_GOMAXPROCS">
Why does using <code>GOMAXPROCS</code> &gt; 1 sometimes make my program
slower?</h3>

<p>
1345
It depends on the nature of your program.
1346 1347 1348 1349 1350 1351 1352 1353 1354
Problems that are intrinsically sequential cannot be sped up by adding
more goroutines.
Concurrency only becomes parallelism when the problem is
intrinsically parallel.
</p>

<p>
In practical terms, programs that spend more time
communicating on channels than doing computation
Rob Pike's avatar
Rob Pike committed
1355
may experience performance degradation when using
1356 1357 1358
multiple OS threads.
This is because sending data between threads involves switching
contexts, which has significant cost.
1359
For instance, the <a href="/ref/spec#An_example_package">prime sieve example</a>
1360 1361 1362
from the Go specification has no significant parallelism although it launches many
goroutines; increasing <code>GOMAXPROCS</code> is more likely to slow it down than
to speed it up.
1363 1364 1365
</p>

<p>
Rob Pike's avatar
Rob Pike committed
1366 1367 1368 1369 1370
Go's goroutine scheduler is not as good as it needs to be, although it
has improved in recent releases.
In the future, it may better optimize its use of OS threads.
For now, if there are performance issues,
setting <code>GOMAXPROCS</code> on a per-application basis may help.
1371 1372
</p>

1373 1374
<p>
For more detail on this topic see the talk entitled,
1375
<a href="//blog.golang.org/2013/01/concurrency-is-not-parallelism.html">Concurrency
1376 1377
is not Parallelism</a>.

1378 1379 1380 1381 1382 1383
<h2 id="Functions_methods">Functions and Methods</h2>

<h3 id="different_method_sets">
Why do T and *T have different method sets?</h3>

<p>
1384
From the <a href="/ref/spec#Types">Go Spec</a>:
1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
</p>

<blockquote>
The method set of any other named type <code>T</code> consists of all methods
with receiver type <code>T</code>. The method set of the corresponding pointer
type <code>*T</code> is the set of all methods with receiver <code>*T</code> or
<code>T</code> (that is, it also contains the method set of <code>T</code>).
</blockquote>

<p>
If an interface value contains a pointer <code>*T</code>,
a method call can obtain a value by dereferencing the pointer,
but if an interface value contains a value <code>T</code>,
there is no useful way for a method call to obtain a pointer.
</p>

<p>
1402 1403 1404
Even in cases where the compiler could take the address of a value
to pass to the method, if the method modifies the value the changes
will be lost in the caller.
Rob Pike's avatar
Rob Pike committed
1405 1406 1407 1408
As an example, if the <code>Write</code> method of
<a href="/pkg/bytes/#Buffer"><code>bytes.Buffer</code></a>
used a value receiver rather than a pointer,
this code:
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
</p>

<pre>
var buf bytes.Buffer
io.Copy(buf, os.Stdin)
</pre>

<p>
would copy standard input into a <i>copy</i> of <code>buf</code>,
not into <code>buf</code> itself.
This is almost never the desired behavior.
</p>

<h3 id="closures_and_goroutines">
Rob Pike's avatar
Rob Pike committed
1423
What happens with closures running as goroutines?</h3>
1424 1425 1426 1427 1428 1429 1430 1431

<p>
Some confusion may arise when using closures with concurrency.
Consider the following program:
</p>

<pre>
func main() {
Rob Pike's avatar
Rob Pike committed
1432 1433
    done := make(chan bool)

1434
    values := []string{"a", "b", "c"}
Rob Pike's avatar
Rob Pike committed
1435 1436 1437 1438 1439 1440 1441 1442 1443
    for _, v := range values {
        go func() {
            fmt.Println(v)
            done &lt;- true
        }()
    }

    // wait for all goroutines to complete before exiting
    for _ = range values {
1444
        &lt;-done
Rob Pike's avatar
Rob Pike committed
1445
    }
1446 1447 1448 1449
}
</pre>

<p>
1450 1451
One might mistakenly expect to see <code>a, b, c</code> as the output.
What you'll probably see instead is <code>c, c, c</code>.  This is because
Rob Pike's avatar
Rob Pike committed
1452
each iteration of the loop uses the same instance of the variable <code>v</code>, so
1453
each closure shares that single variable. When the closure runs, it prints the
Rob Pike's avatar
Rob Pike committed
1454
value of <code>v</code> at the time <code>fmt.Println</code> is executed,
1455
but <code>v</code> may have been modified since the goroutine was launched.
1456
To help detect this and other problems before they happen, run
1457
<a href="/cmd/go/#hdr-Run_go_tool_vet_on_packages"><code>go vet</code></a>.
1458 1459 1460
</p>

<p>
1461 1462 1463
To bind the current value of <code>v</code> to each closure as it is launched, one
must modify the inner loop to create a new variable each iteration.
One way is to pass the variable as an argument to the closure:
1464 1465 1466
</p>

<pre>
Rob Pike's avatar
Rob Pike committed
1467 1468 1469 1470 1471 1472
    for _, v := range values {
        go func(<b>u</b> string) {
            fmt.Println(<b>u</b>)
            done &lt;- true
        }(<b>v</b>)
    }
1473 1474 1475
</pre>

<p>
1476
In this example, the value of <code>v</code> is passed as an argument to the
1477 1478 1479 1480
anonymous function. That value is then accessible inside the function as
the variable <code>u</code>.
</p>

1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
<p>
Even easier is just to create a new variable, using a declaration style that may
seem odd but works fine in Go:
</p>

<pre>
    for _, v := range values {
        <b>v := v</b> // create a new 'v'.
        go func() {
            fmt.Println(<b>v</b>)
            done &lt;- true
        }()
    }
</pre>

1496 1497 1498 1499 1500 1501
<h2 id="Control_flow">Control flow</h2>

<h3 id="Does_Go_have_a_ternary_form">
Does Go have the <code>?:</code> operator?</h3>

<p>
Rob Pike's avatar
Rob Pike committed
1502
There is no ternary testing operation in Go. You may use the following to achieve the same
1503 1504 1505 1506 1507
result:
</p>

<pre>
if expr {
Rob Pike's avatar
Rob Pike committed
1508
    n = trueVal
1509
} else {
Rob Pike's avatar
Rob Pike committed
1510
    n = falseVal
1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545
}
</pre>

<h2 id="Packages_Testing">Packages and Testing</h2>

<h3 id="How_do_I_create_a_multifile_package">
How do I create a multifile package?</h3>

<p>
Put all the source files for the package in a directory by themselves.
Source files can refer to items from different files at will; there is
no need for forward declarations or a header file.
</p>

<p>
Other than being split into multiple files, the package will compile and test
just like a single-file package.
</p>

<h3 id="How_do_I_write_a_unit_test">
How do I write a unit test?</h3>

<p>
Create a new file ending in <code>_test.go</code> in the same directory
as your package sources. Inside that file, <code>import "testing"</code>
and write functions of the form
</p>

<pre>
func TestFoo(t *testing.T) {
    ...
}
</pre>

<p>
1546
Run <code>go test</code> in that directory.
1547 1548 1549 1550
That script finds the <code>Test</code> functions,
builds a test binary, and runs it.
</p>

1551 1552
<p>See the <a href="/doc/code.html">How to Write Go Code</a> document,
the <a href="/pkg/testing/"><code>testing</code></a> package
1553
and the <a href="/cmd/go/#hdr-Test_packages"><code>go test</code></a> subcommand for more details.
1554
</p>
Andrew Gerrand's avatar
Andrew Gerrand committed
1555

1556 1557 1558 1559
<h3 id="testing_framework">
Where is my favorite helper function for testing?</h3>

<p>
1560
Go's standard <a href="/pkg/testing/"><code>testing</code></a> package makes it easy to write unit tests, but it lacks
1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590
features provided in other language's testing frameworks such as assertion functions.
An <a href="#assertions">earlier section</a> of this document explained why Go
doesn't have assertions, and
the same arguments apply to the use of <code>assert</code> in tests.
Proper error handling means letting other tests run after one has failed, so
that the person debugging the failure gets a complete picture of what is
wrong. It is more useful for a test to report that
<code>isPrime</code> gives the wrong answer for 2, 3, 5, and 7 (or for
2, 4, 8, and 16) than to report that <code>isPrime</code> gives the wrong
answer for 2 and therefore no more tests were run. The programmer who
triggers the test failure may not be familiar with the code that fails.
Time invested writing a good error message now pays off later when the
test breaks.
</p>

<p>
A related point is that testing frameworks tend to develop into mini-languages
of their own, with conditionals and controls and printing mechanisms,
but Go already has all those capabilities; why recreate them?
We'd rather write tests in Go; it's one fewer language to learn and the
approach keeps the tests straightforward and easy to understand.
</p>

<p>
If the amount of extra code required to write
good errors seems repetitive and overwhelming, the test might work better if
table-driven, iterating over a list of inputs and outputs defined
in a data structure (Go has excellent support for data structure literals).
The work to write a good test and good error messages will then be amortized over many
test cases. The standard Go library is full of illustrative examples, such as in
1591
<a href="/src/fmt/fmt_test.go">the formatting tests for the <code>fmt</code> package</a>.
1592 1593
</p>

Russ Cox's avatar
Russ Cox committed
1594 1595 1596 1597 1598 1599 1600

<h2 id="Implementation">Implementation</h2>

<h3 id="What_compiler_technology_is_used_to_build_the_compilers">
What compiler technology is used to build the compilers?</h3>

<p>
1601
<code>Gccgo</code> has a front end written in C++, with a recursive descent parser coupled to the
Rob Pike's avatar
Rob Pike committed
1602 1603 1604 1605
standard GCC back end. <code>Gc</code> is written in Go using
<code>yacc</code>/<code>bison</code> for the parser
and uses a custom loader, also written in Go but
based on the Plan 9 loader, to generate ELF/Mach-O/PE binaries.
Evan Shaw's avatar
Evan Shaw committed
1606
</p>
Russ Cox's avatar
Russ Cox committed
1607 1608

<p>
Rob Pike's avatar
Rob Pike committed
1609 1610 1611 1612 1613
We considered using LLVM for <code>gc</code> but we felt it was too large and
slow to meet our performance goals.
</p>

<p>
Rob Pike's avatar
Rob Pike committed
1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626
The original <code>gc</code>, the Go compiler, was written in C
because of the difficulties of bootstrapping&mdash;you'd need a Go compiler to
set up a Go environment.
But things have advanced and as of Go 1.5 the compiler is written in Go.
It was converted from C to Go using automatic translation tools, as
described in <a href="/s/go13compiler">this design document</a>
and <a href="https://talks.golang.org/2015/gogo.slide#1">a recent talk</a>.
Thus the compiler is now "self-hosting", which means we must face
the bootstrapping problem.
The solution, naturally, is to have a working Go installation already,
just as one normally has a working C installation in place.
The story of how to bring up a new Go installation from source
is described <a href="/s/go15bootstrap">separately</a>.
Evan Shaw's avatar
Evan Shaw committed
1627
</p>
Russ Cox's avatar
Russ Cox committed
1628 1629

<p>
Rob Pike's avatar
Rob Pike committed
1630 1631 1632 1633
Go is a fine language in which to implement a Go compiler.
Although <code>gc</code> does not use them (yet?), a native lexer and
parser are available in the <a href="/pkg/go/"><code>go</code></a> package
and there is also a <a href="/pkg/go/types">type checker</a>.
Evan Shaw's avatar
Evan Shaw committed
1634
</p>
Russ Cox's avatar
Russ Cox committed
1635

1636 1637
<h3 id="How_is_the_run_time_support_implemented">
How is the run-time support implemented?</h3>
Russ Cox's avatar
Russ Cox committed
1638 1639

<p>
Rob Pike's avatar
Rob Pike committed
1640
Again due to bootstrapping issues, the run-time code was originally written mostly in C (with a
Rob Pike's avatar
Rob Pike committed
1641 1642
tiny bit of assembler) but it has since been translated to Go
(except for some assembler bits).
Rob Pike's avatar
Rob Pike committed
1643
<code>Gccgo</code>'s run-time support uses <code>glibc</code>.
Rob Pike's avatar
Rob Pike committed
1644 1645
The <code>gccgo</code> compiler implements goroutines using
a technique called segmented stacks,
1646
supported by recent modifications to the gold linker.
Evan Shaw's avatar
Evan Shaw committed
1647
</p>
1648

1649 1650 1651 1652
<h3 id="Why_is_my_trivial_program_such_a_large_binary">
Why is my trivial program such a large binary?</h3>

<p>
Rob Pike's avatar
Rob Pike committed
1653 1654
The linker in the <code>gc</code> tool chain
creates statically-linked binaries by default.  All Go binaries therefore include the Go
1655 1656
run-time, along with the run-time type information necessary to support dynamic
type checks, reflection, and even panic-time stack traces.
Evan Shaw's avatar
Evan Shaw committed
1657
</p>
1658 1659

<p>
1660 1661 1662 1663
A simple C "hello, world" program compiled and linked statically using gcc
on Linux is around 750 kB,
including an implementation of <code>printf</code>.
An equivalent Go program using <code>fmt.Printf</code>
Rob Pike's avatar
Rob Pike committed
1664
is around 2.3 MB, but
Rob Pike's avatar
Rob Pike committed
1665
that includes more powerful run-time support and type information.
Evan Shaw's avatar
Evan Shaw committed
1666
</p>
1667

Rob Pike's avatar
Rob Pike committed
1668 1669 1670 1671 1672
<h3 id="unused_variables_and_imports">
Can I stop these complaints about my unused variable/import?</h3>

<p>
The presence of an unused variable may indicate a bug, while
1673 1674 1675 1676 1677 1678 1679
unused imports just slow down compilation,
an effect that can become substantial as a program accumulates
code and programmers over time.
For these reasons, Go refuses to compile programs with unused
variables or imports,
trading short-term convenience for long-term build speed and
program clarity.
Rob Pike's avatar
Rob Pike committed
1680 1681 1682
</p>

<p>
1683
Still, when developing code, it's common to create these situations
Rob Pike's avatar
Rob Pike committed
1684
temporarily and it can be annoying to have to edit them out before the
1685
program will compile.
Rob Pike's avatar
Rob Pike committed
1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718
</p>

<p>
Some have asked for a compiler option to turn those checks off
or at least reduce them to warnings.
Such an option has not been added, though,
because compiler options should not affect the semantics of the
language and because the Go compiler does not report warnings, only
errors that prevent compilation.
</p>

<p>
There are two reasons for having no warnings.  First, if it's worth
complaining about, it's worth fixing in the code.  (And if it's not
worth fixing, it's not worth mentioning.) Second, having the compiler
generate warnings encourages the implementation to warn about weak
cases that can make compilation noisy, masking real errors that
<em>should</em> be fixed.
</p>

<p>
It's easy to address the situation, though.  Use the blank identifier
to let unused things persist while you're developing.
</p>

<pre>
import "unused"

// This declaration marks the import as used by referencing an
// item from the package.
var _ = unused.Item  // TODO: Delete before committing!

func main() {
Rob Pike's avatar
Rob Pike committed
1719 1720 1721
    debugData := debug.Profile()
    _ = debugData // Used only during debugging.
    ....
Rob Pike's avatar
Rob Pike committed
1722 1723 1724
}
</pre>

Rob Pike's avatar
Rob Pike committed
1725 1726
<p>
Nowadays, most Go programmers use a tool,
1727
<a href="http://godoc.org/golang.org/x/tools/cmd/goimports">goimports</a>,
Rob Pike's avatar
Rob Pike committed
1728 1729 1730 1731 1732
which automatically rewrites a Go source file to have the correct imports,
eliminating the unused imports issue in practice.
This program is easily connected to most editors to run automatically when a Go source file is written.
</p>

1733 1734 1735 1736 1737 1738 1739
<h2 id="Performance">Performance</h2>

<h3 id="Why_does_Go_perform_badly_on_benchmark_x">
Why does Go perform badly on benchmark X?</h3>

<p>
One of Go's design goals is to approach the performance of C for comparable
1740 1741 1742
programs, yet on some benchmarks it does quite poorly, including several
in <a href="/test/bench/shootout/">test/bench/shootout</a>. The slowest depend on libraries
for which versions of comparable performance are not available in Go.
Rob Pike's avatar
Rob Pike committed
1743 1744
For instance, <a href="/test/bench/shootout/pidigits.go">pidigits.go</a>
depends on a multi-precision math package, and the C
1745
versions, unlike Go's, use <a href="http://gmplib.org/">GMP</a> (which is
1746
written in optimized assembler).
Rob Pike's avatar
Rob Pike committed
1747 1748
Benchmarks that depend on regular expressions
(<a href="/test/bench/shootout/regex-dna.go">regex-dna.go</a>, for instance) are
Rob Pike's avatar
Rob Pike committed
1749
essentially comparing Go's native <a href="/pkg/regexp">regexp package</a> to
1750 1751 1752 1753 1754 1755
mature, highly optimized regular expression libraries like PCRE.
</p>

<p>
Benchmark games are won by extensive tuning and the Go versions of most
of the benchmarks need attention.  If you measure comparable C
Rob Pike's avatar
Rob Pike committed
1756 1757
and Go programs
(<a href="/test/bench/shootout/reverse-complement.go">reverse-complement.go</a> is one example), you'll see the two
1758 1759 1760 1761 1762 1763
languages are much closer in raw performance than this suite would
indicate.
</p>

<p>
Still, there is room for improvement. The compilers are good but could be
Andrew Gerrand's avatar
Andrew Gerrand committed
1764
better, many libraries need major performance work, and the garbage collector
1765
isn't fast enough yet. (Even if it were, taking care not to generate unnecessary
Rob Pike's avatar
Rob Pike committed
1766
garbage can have a huge effect.)
1767 1768
</p>

1769
<p>
1770 1771 1772 1773
In any case, Go can often be very competitive.
There has been significant improvement in the performance of many programs
as the language and tools have developed.
See the blog post about
1774
<a href="//blog.golang.org/2011/06/profiling-go-programs.html">profiling
1775 1776
Go programs</a> for an informative example.

1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
<h2 id="change_from_c">Changes from C</h2>

<h3 id="different_syntax">
Why is the syntax so different from C?</h3>
<p>
Other than declaration syntax, the differences are not major and stem
from two desires.  First, the syntax should feel light, without too
many mandatory keywords, repetition, or arcana.  Second, the language
has been designed to be easy to analyze
and can be parsed without a symbol table.  This makes it much easier
to build tools such as debuggers, dependency analyzers, automated
documentation extractors, IDE plug-ins, and so on.  C and its
descendants are notoriously difficult in this regard.
</p>

<h3 id="declarations_backwards">
Why are declarations backwards?</h3>
<p>
They're only backwards if you're used to C. In C, the notion is that a
variable is declared like an expression denoting its type, which is a
nice idea, but the type and expression grammars don't mix very well and
the results can be confusing; consider function pointers.  Go mostly
separates expression and type syntax and that simplifies things (using
prefix <code>*</code> for pointers is an exception that proves the rule).  In C,
the declaration
</p>
<pre>
Rob Pike's avatar
Rob Pike committed
1804
    int* a, b;
1805 1806 1807 1808 1809
</pre>
<p>
declares <code>a</code> to be a pointer but not <code>b</code>; in Go
</p>
<pre>
Rob Pike's avatar
Rob Pike committed
1810
    var a, b *int
1811 1812 1813 1814 1815 1816 1817
</pre>
<p>
declares both to be pointers.  This is clearer and more regular.
Also, the <code>:=</code> short declaration form argues that a full variable
declaration should present the same order as <code>:=</code> so
</p>
<pre>
Rob Pike's avatar
Rob Pike committed
1818
    var a uint64 = 1
1819
</pre>
1820
<p>
1821
has the same effect as
1822
</p>
1823
<pre>
Rob Pike's avatar
Rob Pike committed
1824
    a := uint64(1)
1825 1826 1827 1828 1829 1830 1831
</pre>
<p>
Parsing is also simplified by having a distinct grammar for types that
is not just the expression grammar; keywords such as <code>func</code>
and <code>chan</code> keep things clear.
</p>

Andrew Gerrand's avatar
Andrew Gerrand committed
1832
<p>
1833
See the article about
1834
<a href="/doc/articles/gos_declaration_syntax.html">Go's Declaration Syntax</a>
1835
for more details.
Andrew Gerrand's avatar
Andrew Gerrand committed
1836 1837
</p>

1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878
<h3 id="no_pointer_arithmetic">
Why is there no pointer arithmetic?</h3>
<p>
Safety.  Without pointer arithmetic it's possible to create a
language that can never derive an illegal address that succeeds
incorrectly.  Compiler and hardware technology have advanced to the
point where a loop using array indices can be as efficient as a loop
using pointer arithmetic.  Also, the lack of pointer arithmetic can
simplify the implementation of the garbage collector.
</p>

<h3 id="inc_dec">
Why are <code>++</code> and <code>--</code> statements and not expressions?  And why postfix, not prefix?</h3>
<p>
Without pointer arithmetic, the convenience value of pre- and postfix
increment operators drops.  By removing them from the expression
hierarchy altogether, expression syntax is simplified and the messy
issues around order of evaluation of <code>++</code> and <code>--</code>
(consider <code>f(i++)</code> and <code>p[i] = q[++i]</code>)
are eliminated as well.  The simplification is
significant.  As for postfix vs. prefix, either would work fine but
the postfix version is more traditional; insistence on prefix arose
with the STL, a library for a language whose name contains, ironically, a
postfix increment.
</p>

<h3 id="semicolons">
Why are there braces but no semicolons? And why can't I put the opening
brace on the next line?</h3>
<p>
Go uses brace brackets for statement grouping, a syntax familiar to
programmers who have worked with any language in the C family.
Semicolons, however, are for parsers, not for people, and we wanted to
eliminate them as much as possible.  To achieve this goal, Go borrows
a trick from BCPL: the semicolons that separate statements are in the
formal grammar but are injected automatically, without lookahead, by
the lexer at the end of any line that could be the end of a statement.
This works very well in practice but has the effect that it forces a
brace style.  For instance, the opening brace of a function cannot
appear on a line by itself.
</p>
Evan Shaw's avatar
Evan Shaw committed
1879

1880 1881 1882 1883
<p>
Some have argued that the lexer should do lookahead to permit the
brace to live on the next line.  We disagree.  Since Go code is meant
to be formatted automatically by
Shenghou Ma's avatar
Shenghou Ma committed
1884
<a href="/cmd/gofmt/"><code>gofmt</code></a>,
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902
<i>some</i> style must be chosen.  That style may differ from what
you've used in C or Java, but Go is a new language and
<code>gofmt</code>'s style is as good as any other.  More
important&mdash;much more important&mdash;the advantages of a single,
programmatically mandated format for all Go programs greatly outweigh
any perceived disadvantages of the particular style.
Note too that Go's style means that an interactive implementation of
Go can use the standard syntax one line at a time without special rules.
</p>

<h3 id="garbage_collection">
Why do garbage collection?  Won't it be too expensive?</h3>
<p>
One of the biggest sources of bookkeeping in systems programs is
memory management.  We feel it's critical to eliminate that
programmer overhead, and advances in garbage collection
technology in the last few years give us confidence that we can
implement it with low enough overhead and no significant
Rob Pike's avatar
Rob Pike committed
1903
latency.
1904
</p>
Evan Shaw's avatar
Evan Shaw committed
1905

1906 1907 1908 1909 1910 1911 1912 1913 1914 1915
<p>
Another point is that a large part of the difficulty of concurrent
and multi-threaded programming is memory management;
as objects get passed among threads it becomes cumbersome
to guarantee they become freed safely.
Automatic garbage collection makes concurrent code far easier to write.
Of course, implementing garbage collection in a concurrent environment is
itself a challenge, but meeting it once rather than in every
program helps everyone.
</p>
Evan Shaw's avatar
Evan Shaw committed
1916

1917 1918 1919 1920
<p>
Finally, concurrency aside, garbage collection makes interfaces
simpler because they don't need to specify how memory is managed across them.
</p>
1921

Rob Pike's avatar
Rob Pike committed
1922
<p>
Rob Pike's avatar
Rob Pike committed
1923 1924 1925 1926 1927 1928
The current implementation is a parallel mark-and-sweep collector.
Recent improvements, documented in
<a href="/s/go14gc">this design document</a>,
have introduced bounded pause times and improved the
parallelism.
Future versions might attempt new approaches.
Rob Pike's avatar
Rob Pike committed
1929 1930
</p>

1931 1932 1933 1934 1935 1936
<p>
On the topic of performance, keep in mind that Go gives the programmer
considerable control over memory layout and allocation, much more than
is typical in garbage-collected languages. A careful programmer can reduce
the garbage collection overhead dramatically by using the language well;
see the article about
1937
<a href="//blog.golang.org/2011/06/profiling-go-programs.html">profiling
1938 1939 1940
Go programs</a> for a worked example, including a demonstration of Go's
profiling tools.
</p>