Golang printf error

Package fmt implements formatted I/O with functions analogous to C's printf and scanf.

Package fmt implements formatted I/O with functions analogous
to C’s printf and scanf. The format ‘verbs’ are derived from C’s but
are simpler.

Printing ¶

The verbs:

General:

%v	the value in a default format
	when printing structs, the plus flag (%+v) adds field names
%#v	a Go-syntax representation of the value
%T	a Go-syntax representation of the type of the value
%%	a literal percent sign; consumes no value

Boolean:

%t	the word true or false

Integer:

%b	base 2
%c	the character represented by the corresponding Unicode code point
%d	base 10
%o	base 8
%O	base 8 with 0o prefix
%q	a single-quoted character literal safely escaped with Go syntax.
%x	base 16, with lower-case letters for a-f
%X	base 16, with upper-case letters for A-F
%U	Unicode format: U+1234; same as "U+%04X"

Floating-point and complex constituents:

%b	decimalless scientific notation with exponent a power of two,
	in the manner of strconv.FormatFloat with the 'b' format,
	e.g. -123456p-78
%e	scientific notation, e.g. -1.234456e+78
%E	scientific notation, e.g. -1.234456E+78
%f	decimal point but no exponent, e.g. 123.456
%F	synonym for %f
%g	%e for large exponents, %f otherwise. Precision is discussed below.
%G	%E for large exponents, %F otherwise
%x	hexadecimal notation (with decimal power of two exponent), e.g. -0x1.23abcp+20
%X	upper-case hexadecimal notation, e.g. -0X1.23ABCP+20

String and slice of bytes (treated equivalently with these verbs):

%s	the uninterpreted bytes of the string or slice
%q	a double-quoted string safely escaped with Go syntax
%x	base 16, lower-case, two characters per byte
%X	base 16, upper-case, two characters per byte

Slice:

%p	address of 0th element in base 16 notation, with leading 0x

Pointer:

%p	base 16 notation, with leading 0x
The %b, %d, %o, %x and %X verbs also work with pointers,
formatting the value exactly as if it were an integer.

The default format for %v is:

bool:                    %t
int, int8 etc.:          %d
uint, uint8 etc.:        %d, %#x if printed with %#v
float32, complex64, etc: %g
string:                  %s
chan:                    %p
pointer:                 %p

For compound objects, the elements are printed using these rules, recursively,
laid out like this:

struct:             {field0 field1 ...}
array, slice:       [elem0 elem1 ...]
maps:               map[key1:value1 key2:value2 ...]
pointer to above:   &{}, &[], &map[]

Width is specified by an optional decimal number immediately preceding the verb.
If absent, the width is whatever is necessary to represent the value.
Precision is specified after the (optional) width by a period followed by a
decimal number. If no period is present, a default precision is used.
A period with no following number specifies a precision of zero.
Examples:

%f     default width, default precision
%9f    width 9, default precision
%.2f   default width, precision 2
%9.2f  width 9, precision 2
%9.f   width 9, precision 0

Width and precision are measured in units of Unicode code points,
that is, runes. (This differs from C’s printf where the
units are always measured in bytes.) Either or both of the flags
may be replaced with the character ‘*’, causing their values to be
obtained from the next operand (preceding the one to format),
which must be of type int.

For most values, width is the minimum number of runes to output,
padding the formatted form with spaces if necessary.

For strings, byte slices and byte arrays, however, precision
limits the length of the input to be formatted (not the size of
the output), truncating if necessary. Normally it is measured in
runes, but for these types when formatted with the %x or %X format
it is measured in bytes.

For floating-point values, width sets the minimum width of the field and
precision sets the number of places after the decimal, if appropriate,
except that for %g/%G precision sets the maximum number of significant
digits (trailing zeros are removed). For example, given 12.345 the format
%6.3f prints 12.345 while %.3g prints 12.3. The default precision for %e, %f
and %#g is 6; for %g it is the smallest number of digits necessary to identify
the value uniquely.

For complex numbers, the width and precision apply to the two
components independently and the result is parenthesized, so %f applied
to 1.2+3.4i produces (1.200000+3.400000i).

When formatting a single integer code point or a rune string (type []rune)
with %q, invalid Unicode code points are changed to the Unicode replacement
character, U+FFFD, as in strconv.QuoteRune.

Other flags:

'+'	always print a sign for numeric values;
	guarantee ASCII-only output for %q (%+q)
'-'	pad with spaces on the right rather than the left (left-justify the field)
'#'	alternate format: add leading 0b for binary (%#b), 0 for octal (%#o),
	0x or 0X for hex (%#x or %#X); suppress 0x for %p (%#p);
	for %q, print a raw (backquoted) string if strconv.CanBackquote
	returns true;
	always print a decimal point for %e, %E, %f, %F, %g and %G;
	do not remove trailing zeros for %g and %G;
	write e.g. U+0078 'x' if the character is printable for %U (%#U).
' '	(space) leave a space for elided sign in numbers (% d);
	put spaces between bytes printing strings or slices in hex (% x, % X)
'0'	pad with leading zeros rather than spaces;
	for numbers, this moves the padding after the sign;
	ignored for strings, byte slices and byte arrays

Flags are ignored by verbs that do not expect them.
For example there is no alternate decimal format, so %#d and %d
behave identically.

For each Printf-like function, there is also a Print function
that takes no format and is equivalent to saying %v for every
operand. Another variant Println inserts blanks between
operands and appends a newline.

Regardless of the verb, if an operand is an interface value,
the internal concrete value is used, not the interface itself.
Thus:

var i interface{} = 23
fmt.Printf("%vn", i)

will print 23.

Except when printed using the verbs %T and %p, special
formatting considerations apply for operands that implement
certain interfaces. In order of application:

1. If the operand is a reflect.Value, the operand is replaced by the
concrete value that it holds, and printing continues with the next rule.

2. If an operand implements the Formatter interface, it will
be invoked. In this case the interpretation of verbs and flags is
controlled by that implementation.

3. If the %v verb is used with the # flag (%#v) and the operand
implements the GoStringer interface, that will be invoked.

If the format (which is implicitly %v for Println etc.) is valid
for a string (%s %q %v %x %X), the following two rules apply:

4. If an operand implements the error interface, the Error method
will be invoked to convert the object to a string, which will then
be formatted as required by the verb (if any).

5. If an operand implements method String() string, that method
will be invoked to convert the object to a string, which will then
be formatted as required by the verb (if any).

For compound operands such as slices and structs, the format
applies to the elements of each operand, recursively, not to the
operand as a whole. Thus %q will quote each element of a slice
of strings, and %6.2f will control formatting for each element
of a floating-point array.

However, when printing a byte slice with a string-like verb
(%s %q %x %X), it is treated identically to a string, as a single item.

To avoid recursion in cases such as

type X string
func (x X) String() string { return Sprintf("<%s>", x) }

convert the value before recurring:

func (x X) String() string { return Sprintf("<%s>", string(x)) }

Infinite recursion can also be triggered by self-referential data
structures, such as a slice that contains itself as an element, if
that type has a String method. Such pathologies are rare, however,
and the package does not protect against them.

When printing a struct, fmt cannot and therefore does not invoke
formatting methods such as Error or String on unexported fields.

Explicit argument indexes ¶

In Printf, Sprintf, and Fprintf, the default behavior is for each
formatting verb to format successive arguments passed in the call.
However, the notation [n] immediately before the verb indicates that the
nth one-indexed argument is to be formatted instead. The same notation
before a ‘*’ for a width or precision selects the argument index holding
the value. After processing a bracketed expression [n], subsequent verbs
will use arguments n+1, n+2, etc. unless otherwise directed.

For example,

fmt.Sprintf("%[2]d %[1]dn", 11, 22)

will yield «22 11», while

fmt.Sprintf("%[3]*.[2]*[1]f", 12.0, 2, 6)

equivalent to

fmt.Sprintf("%6.2f", 12.0)

will yield » 12.00″. Because an explicit index affects subsequent verbs,
this notation can be used to print the same values multiple times
by resetting the index for the first argument to be repeated:

fmt.Sprintf("%d %d %#[1]x %#x", 16, 17)

will yield «16 17 0x10 0x11».

Format errors ¶

If an invalid argument is given for a verb, such as providing
a string to %d, the generated string will contain a
description of the problem, as in these examples:

Wrong type or unknown verb: %!verb(type=value)
	Printf("%d", "hi"):        %!d(string=hi)
Too many arguments: %!(EXTRA type=value)
	Printf("hi", "guys"):      hi%!(EXTRA string=guys)
Too few arguments: %!verb(MISSING)
	Printf("hi%d"):            hi%!d(MISSING)
Non-int for width or precision: %!(BADWIDTH) or %!(BADPREC)
	Printf("%*s", 4.5, "hi"):  %!(BADWIDTH)hi
	Printf("%.*s", 4.5, "hi"): %!(BADPREC)hi
Invalid or invalid use of argument index: %!(BADINDEX)
	Printf("%*[2]d", 7):       %!d(BADINDEX)
	Printf("%.[2]d", 7):       %!d(BADINDEX)

All errors begin with the string «%!» followed sometimes
by a single character (the verb) and end with a parenthesized
description.

If an Error or String method triggers a panic when called by a
print routine, the fmt package reformats the error message
from the panic, decorating it with an indication that it came
through the fmt package. For example, if a String method
calls panic(«bad»), the resulting formatted message will look
like

%!s(PANIC=bad)

The %!s just shows the print verb in use when the failure
occurred. If the panic is caused by a nil receiver to an Error
or String method, however, the output is the undecorated
string, «<nil>».

Scanning ¶

An analogous set of functions scans formatted text to yield
values. Scan, Scanf and Scanln read from os.Stdin; Fscan,
Fscanf and Fscanln read from a specified io.Reader; Sscan,
Sscanf and Sscanln read from an argument string.

Scan, Fscan, Sscan treat newlines in the input as spaces.

Scanln, Fscanln and Sscanln stop scanning at a newline and
require that the items be followed by a newline or EOF.

Scanf, Fscanf, and Sscanf parse the arguments according to a
format string, analogous to that of Printf. In the text that
follows, ‘space’ means any Unicode whitespace character
except newline.

In the format string, a verb introduced by the % character
consumes and parses input; these verbs are described in more
detail below. A character other than %, space, or newline in
the format consumes exactly that input character, which must
be present. A newline with zero or more spaces before it in
the format string consumes zero or more spaces in the input
followed by a single newline or the end of the input. A space
following a newline in the format string consumes zero or more
spaces in the input. Otherwise, any run of one or more spaces
in the format string consumes as many spaces as possible in
the input. Unless the run of spaces in the format string
appears adjacent to a newline, the run must consume at least
one space from the input or find the end of the input.

The handling of spaces and newlines differs from that of C’s
scanf family: in C, newlines are treated as any other space,
and it is never an error when a run of spaces in the format
string finds no spaces to consume in the input.

The verbs behave analogously to those of Printf.
For example, %x will scan an integer as a hexadecimal number,
and %v will scan the default representation format for the value.
The Printf verbs %p and %T and the flags # and + are not implemented.
For floating-point and complex values, all valid formatting verbs
(%b %e %E %f %F %g %G %x %X and %v) are equivalent and accept
both decimal and hexadecimal notation (for example: «2.3e+7», «0x4.5p-8»)
and digit-separating underscores (for example: «3.14159_26535_89793»).

Input processed by verbs is implicitly space-delimited: the
implementation of every verb except %c starts by discarding
leading spaces from the remaining input, and the %s verb
(and %v reading into a string) stops consuming input at the first
space or newline character.

The familiar base-setting prefixes 0b (binary), 0o and 0 (octal),
and 0x (hexadecimal) are accepted when scanning integers
without a format or with the %v verb, as are digit-separating
underscores.

Width is interpreted in the input text but there is no
syntax for scanning with a precision (no %5.2f, just %5f).
If width is provided, it applies after leading spaces are
trimmed and specifies the maximum number of runes to read
to satisfy the verb. For example,

Sscanf(" 1234567 ", "%5s%d", &s, &i)

will set s to «12345» and i to 67 while

Sscanf(" 12 34 567 ", "%5s%d", &s, &i)

will set s to «12» and i to 34.

In all the scanning functions, a carriage return followed
immediately by a newline is treated as a plain newline
(rn means the same as n).

In all the scanning functions, if an operand implements method
Scan (that is, it implements the Scanner interface) that
method will be used to scan the text for that operand. Also,
if the number of arguments scanned is less than the number of
arguments provided, an error is returned.

All arguments to be scanned must be either pointers to basic
types or implementations of the Scanner interface.

Like Scanf and Fscanf, Sscanf need not consume its entire input.
There is no way to recover how much of the input string Sscanf used.

Note: Fscan etc. can read one character (rune) past the input
they return, which means that a loop calling a scan routine
may skip some of the input. This is usually a problem only
when there is no space between input values. If the reader
provided to Fscan implements ReadRune, that method will be used
to read characters. If the reader also implements UnreadRune,
that method will be used to save the character and successive
calls will not lose data. To attach ReadRune and UnreadRune
methods to a reader without that capability, use
bufio.NewReader.

These examples demonstrate the basics of printing using a format string. Printf,
Sprintf, and Fprintf all take a format string that specifies how to format the
subsequent arguments. For example, %d (we call that a ‘verb’) says to print the
corresponding argument, which must be an integer (or something containing an
integer, such as a slice of ints) in decimal. The verb %v (‘v’ for ‘value’)
always formats the argument in its default form, just how Print or Println would
show it. The special verb %T (‘T’ for ‘Type’) prints the type of the argument
rather than its value. The examples are not exhaustive; see the package comment
for all the details.

package main

import (
	"fmt"
	"math"
	"time"
)

func main() {
	// A basic set of examples showing that %v is the default format, in this
	// case decimal for integers, which can be explicitly requested with %d;
	// the output is just what Println generates.
	integer := 23
	// Each of these prints "23" (without the quotes).
	fmt.Println(integer)
	fmt.Printf("%vn", integer)
	fmt.Printf("%dn", integer)

	// The special verb %T shows the type of an item rather than its value.
	fmt.Printf("%T %Tn", integer, &integer)
	// Result: int *int

	// Println(x) is the same as Printf("%vn", x) so we will use only Printf
	// in the following examples. Each one demonstrates how to format values of
	// a particular type, such as integers or strings. We start each format
	// string with %v to show the default output and follow that with one or
	// more custom formats.

	// Booleans print as "true" or "false" with %v or %t.
	truth := true
	fmt.Printf("%v %tn", truth, truth)
	// Result: true true

	// Integers print as decimals with %v and %d,
	// or in hex with %x, octal with %o, or binary with %b.
	answer := 42
	fmt.Printf("%v %d %x %o %bn", answer, answer, answer, answer, answer)
	// Result: 42 42 2a 52 101010

	// Floats have multiple formats: %v and %g print a compact representation,
	// while %f prints a decimal point and %e uses exponential notation. The
	// format %6.2f used here shows how to set the width and precision to
	// control the appearance of a floating-point value. In this instance, 6 is
	// the total width of the printed text for the value (note the extra spaces
	// in the output) and 2 is the number of decimal places to show.
	pi := math.Pi
	fmt.Printf("%v %g %.2f (%6.2f) %en", pi, pi, pi, pi, pi)
	// Result: 3.141592653589793 3.141592653589793 3.14 (  3.14) 3.141593e+00

	// Complex numbers format as parenthesized pairs of floats, with an 'i'
	// after the imaginary part.
	point := 110.7 + 22.5i
	fmt.Printf("%v %g %.2f %.2en", point, point, point, point)
	// Result: (110.7+22.5i) (110.7+22.5i) (110.70+22.50i) (1.11e+02+2.25e+01i)

	// Runes are integers but when printed with %c show the character with that
	// Unicode value. The %q verb shows them as quoted characters, %U as a
	// hex Unicode code point, and %#U as both a code point and a quoted
	// printable form if the rune is printable.
	smile := '😀'
	fmt.Printf("%v %d %c %q %U %#Un", smile, smile, smile, smile, smile, smile)
	// Result: 128512 128512 😀 '😀' U+1F600 U+1F600 '😀'

	// Strings are formatted with %v and %s as-is, with %q as quoted strings,
	// and %#q as backquoted strings.
	placeholders := `foo "bar"`
	fmt.Printf("%v %s %q %#qn", placeholders, placeholders, placeholders, placeholders)
	// Result: foo "bar" foo "bar" "foo "bar"" `foo "bar"`

	// Maps formatted with %v show keys and values in their default formats.
	// The %#v form (the # is called a "flag" in this context) shows the map in
	// the Go source format. Maps are printed in a consistent order, sorted
	// by the values of the keys.
	isLegume := map[string]bool{
		"peanut":    true,
		"dachshund": false,
	}
	fmt.Printf("%v %#vn", isLegume, isLegume)
	// Result: map[dachshund:false peanut:true] map[string]bool{"dachshund":false, "peanut":true}

	// Structs formatted with %v show field values in their default formats.
	// The %+v form shows the fields by name, while %#v formats the struct in
	// Go source format.
	person := struct {
		Name string
		Age  int
	}{"Kim", 22}
	fmt.Printf("%v %+v %#vn", person, person, person)
	// Result: {Kim 22} {Name:Kim Age:22} struct { Name string; Age int }{Name:"Kim", Age:22}

	// The default format for a pointer shows the underlying value preceded by
	// an ampersand. The %p verb prints the pointer value in hex. We use a
	// typed nil for the argument to %p here because the value of any non-nil
	// pointer would change from run to run; run the commented-out Printf
	// call yourself to see.
	pointer := &person
	fmt.Printf("%v %pn", pointer, (*int)(nil))
	// Result: &{Kim 22} 0x0
	// fmt.Printf("%v %pn", pointer, pointer)
	// Result: &{Kim 22} 0x010203 // See comment above.

	// Arrays and slices are formatted by applying the format to each element.
	greats := [5]string{"Kitano", "Kobayashi", "Kurosawa", "Miyazaki", "Ozu"}
	fmt.Printf("%v %qn", greats, greats)
	// Result: [Kitano Kobayashi Kurosawa Miyazaki Ozu] ["Kitano" "Kobayashi" "Kurosawa" "Miyazaki" "Ozu"]

	kGreats := greats[:3]
	fmt.Printf("%v %q %#vn", kGreats, kGreats, kGreats)
	// Result: [Kitano Kobayashi Kurosawa] ["Kitano" "Kobayashi" "Kurosawa"] []string{"Kitano", "Kobayashi", "Kurosawa"}

	// Byte slices are special. Integer verbs like %d print the elements in
	// that format. The %s and %q forms treat the slice like a string. The %x
	// verb has a special form with the space flag that puts a space between
	// the bytes.
	cmd := []byte("a⌘")
	fmt.Printf("%v %d %s %q %x % xn", cmd, cmd, cmd, cmd, cmd, cmd)
	// Result: [97 226 140 152] [97 226 140 152] a⌘ "a⌘" 61e28c98 61 e2 8c 98

	// Types that implement Stringer are printed the same as strings. Because
	// Stringers return a string, we can print them using a string-specific
	// verb such as %q.
	now := time.Unix(123456789, 0).UTC() // time.Time implements fmt.Stringer.
	fmt.Printf("%v %qn", now, now)
	// Result: 1973-11-29 21:33:09 +0000 UTC "1973-11-29 21:33:09 +0000 UTC"

}
Output:

23
23
23
int *int
true true
42 42 2a 52 101010
3.141592653589793 3.141592653589793 3.14 (  3.14) 3.141593e+00
(110.7+22.5i) (110.7+22.5i) (110.70+22.50i) (1.11e+02+2.25e+01i)
128512 128512 😀 '😀' U+1F600 U+1F600 '😀'
foo "bar" foo "bar" "foo "bar"" `foo "bar"`
map[dachshund:false peanut:true] map[string]bool{"dachshund":false, "peanut":true}
{Kim 22} {Name:Kim Age:22} struct { Name string; Age int }{Name:"Kim", Age:22}
&{Kim 22} 0x0
[Kitano Kobayashi Kurosawa Miyazaki Ozu] ["Kitano" "Kobayashi" "Kurosawa" "Miyazaki" "Ozu"]
[Kitano Kobayashi Kurosawa] ["Kitano" "Kobayashi" "Kurosawa"] []string{"Kitano", "Kobayashi", "Kurosawa"}
[97 226 140 152] [97 226 140 152] a⌘ "a⌘" 61e28c98 61 e2 8c 98
1973-11-29 21:33:09 +0000 UTC "1973-11-29 21:33:09 +0000 UTC"

Print, Println, and Printf lay out their arguments differently. In this example
we can compare their behaviors. Println always adds blanks between the items it
prints, while Print adds blanks only between non-string arguments and Printf
does exactly what it is told.
Sprint, Sprintln, Sprintf, Fprint, Fprintln, and Fprintf behave the same as
their corresponding Print, Println, and Printf functions shown here.

package main

import (
	"fmt"
	"math"
)

func main() {
	a, b := 3.0, 4.0
	h := math.Hypot(a, b)

	// Print inserts blanks between arguments when neither is a string.
	// It does not add a newline to the output, so we add one explicitly.
	fmt.Print("The vector (", a, b, ") has length ", h, ".n")

	// Println always inserts spaces between its arguments,
	// so it cannot be used to produce the same output as Print in this case;
	// its output has extra spaces.
	// Also, Println always adds a newline to the output.
	fmt.Println("The vector (", a, b, ") has length", h, ".")

	// Printf provides complete control but is more complex to use.
	// It does not add a newline to the output, so we add one explicitly
	// at the end of the format specifier string.
	fmt.Printf("The vector (%g %g) has length %g.n", a, b, h)

}
Output:

The vector (3 4) has length 5.
The vector ( 3 4 ) has length 5 .
The vector (3 4) has length 5.
  • func Append(b []byte, a …any) []byte
  • func Appendf(b []byte, format string, a …any) []byte
  • func Appendln(b []byte, a …any) []byte
  • func Errorf(format string, a …any) error
  • func FormatString(state State, verb rune) string
  • func Fprint(w io.Writer, a …any) (n int, err error)
  • func Fprintf(w io.Writer, format string, a …any) (n int, err error)
  • func Fprintln(w io.Writer, a …any) (n int, err error)
  • func Fscan(r io.Reader, a …any) (n int, err error)
  • func Fscanf(r io.Reader, format string, a …any) (n int, err error)
  • func Fscanln(r io.Reader, a …any) (n int, err error)
  • func Print(a …any) (n int, err error)
  • func Printf(format string, a …any) (n int, err error)
  • func Println(a …any) (n int, err error)
  • func Scan(a …any) (n int, err error)
  • func Scanf(format string, a …any) (n int, err error)
  • func Scanln(a …any) (n int, err error)
  • func Sprint(a …any) string
  • func Sprintf(format string, a …any) string
  • func Sprintln(a …any) string
  • func Sscan(str string, a …any) (n int, err error)
  • func Sscanf(str string, format string, a …any) (n int, err error)
  • func Sscanln(str string, a …any) (n int, err error)
  • type Formatter
  • type GoStringer
  • type ScanState
  • type Scanner
  • type State
  • type Stringer
  • Package (Formats)
  • Package (Printers)
  • Errorf
  • Fprint
  • Fprintf
  • Fprintln
  • Fscanf
  • Fscanln
  • GoStringer
  • Print
  • Printf
  • Println
  • Sprint
  • Sprintf
  • Sprintln
  • Sscanf
  • Stringer

This section is empty.

This section is empty.

Append formats using the default formats for its operands, appends the result to
the byte slice, and returns the updated slice.

Appendf formats according to a format specifier, appends the result to the byte
slice, and returns the updated slice.

Appendln formats using the default formats for its operands, appends the result
to the byte slice, and returns the updated slice. Spaces are always added
between operands and a newline is appended.

Errorf formats according to a format specifier and returns the string as a
value that satisfies error.

If the format specifier includes a %w verb with an error operand,
the returned error will implement an Unwrap method returning the operand.
If there is more than one %w verb, the returned error will implement an
Unwrap method returning a []error containing all the %w operands in the
order they appear in the arguments.
It is invalid to supply the %w verb with an operand that does not implement
the error interface. The %w verb is otherwise a synonym for %v.

The Errorf function lets us use formatting features
to create descriptive error messages.

package main

import (
	"fmt"
)

func main() {
	const name, id = "bueller", 17
	err := fmt.Errorf("user %q (id %d) not found", name, id)
	fmt.Println(err.Error())

}
Output:

user "bueller" (id 17) not found

FormatString returns a string representing the fully qualified formatting
directive captured by the State, followed by the argument verb. (State does not
itself contain the verb.) The result has a leading percent sign followed by any
flags, the width, and the precision. Missing flags, width, and precision are
omitted. This function allows a Formatter to reconstruct the original
directive triggering the call to Format.

Fprint formats using the default formats for its operands and writes to w.
Spaces are added between operands when neither is a string.
It returns the number of bytes written and any write error encountered.

package main

import (
	"fmt"
	"os"
)

func main() {
	const name, age = "Kim", 22
	n, err := fmt.Fprint(os.Stdout, name, " is ", age, " years old.n")

	// The n and err return values from Fprint are
	// those returned by the underlying io.Writer.
	if err != nil {
		fmt.Fprintf(os.Stderr, "Fprint: %vn", err)
	}
	fmt.Print(n, " bytes written.n")

}
Output:

Kim is 22 years old.
21 bytes written.

Fprintf formats according to a format specifier and writes to w.
It returns the number of bytes written and any write error encountered.

package main

import (
	"fmt"
	"os"
)

func main() {
	const name, age = "Kim", 22
	n, err := fmt.Fprintf(os.Stdout, "%s is %d years old.n", name, age)

	// The n and err return values from Fprintf are
	// those returned by the underlying io.Writer.
	if err != nil {
		fmt.Fprintf(os.Stderr, "Fprintf: %vn", err)
	}
	fmt.Printf("%d bytes written.n", n)

}
Output:

Kim is 22 years old.
21 bytes written.

Fprintln formats using the default formats for its operands and writes to w.
Spaces are always added between operands and a newline is appended.
It returns the number of bytes written and any write error encountered.

package main

import (
	"fmt"
	"os"
)

func main() {
	const name, age = "Kim", 22
	n, err := fmt.Fprintln(os.Stdout, name, "is", age, "years old.")

	// The n and err return values from Fprintln are
	// those returned by the underlying io.Writer.
	if err != nil {
		fmt.Fprintf(os.Stderr, "Fprintln: %vn", err)
	}
	fmt.Println(n, "bytes written.")

}
Output:

Kim is 22 years old.
21 bytes written.

Fscan scans text read from r, storing successive space-separated
values into successive arguments. Newlines count as space. It
returns the number of items successfully scanned. If that is less
than the number of arguments, err will report why.

Fscanf scans text read from r, storing successive space-separated
values into successive arguments as determined by the format. It
returns the number of items successfully parsed.
Newlines in the input must match newlines in the format.

package main

import (
	"fmt"
	"os"
	"strings"
)

func main() {
	var (
		i int
		b bool
		s string
	)
	r := strings.NewReader("5 true gophers")
	n, err := fmt.Fscanf(r, "%d %t %s", &i, &b, &s)
	if err != nil {
		fmt.Fprintf(os.Stderr, "Fscanf: %vn", err)
	}
	fmt.Println(i, b, s)
	fmt.Println(n)
}
Output:

5 true gophers
3

Fscanln is similar to Fscan, but stops scanning at a newline and
after the final item there must be a newline or EOF.

package main

import (
	"fmt"
	"io"
	"strings"
)

func main() {
	s := `dmr 1771 1.61803398875
	ken 271828 3.14159`
	r := strings.NewReader(s)
	var a string
	var b int
	var c float64
	for {
		n, err := fmt.Fscanln(r, &a, &b, &c)
		if err == io.EOF {
			break
		}
		if err != nil {
			panic(err)
		}
		fmt.Printf("%d: %s, %d, %fn", n, a, b, c)
	}
}
Output:

3: dmr, 1771, 1.618034
3: ken, 271828, 3.141590

Print formats using the default formats for its operands and writes to standard output.
Spaces are added between operands when neither is a string.
It returns the number of bytes written and any write error encountered.

package main

import (
	"fmt"
)

func main() {
	const name, age = "Kim", 22
	fmt.Print(name, " is ", age, " years old.n")

	// It is conventional not to worry about any
	// error returned by Print.

}
Output:

Kim is 22 years old.

Printf formats according to a format specifier and writes to standard output.
It returns the number of bytes written and any write error encountered.

package main

import (
	"fmt"
)

func main() {
	const name, age = "Kim", 22
	fmt.Printf("%s is %d years old.n", name, age)

	// It is conventional not to worry about any
	// error returned by Printf.

}
Output:

Kim is 22 years old.

Println formats using the default formats for its operands and writes to standard output.
Spaces are always added between operands and a newline is appended.
It returns the number of bytes written and any write error encountered.

package main

import (
	"fmt"
)

func main() {
	const name, age = "Kim", 22
	fmt.Println(name, "is", age, "years old.")

	// It is conventional not to worry about any
	// error returned by Println.

}
Output:

Kim is 22 years old.

Scan scans text read from standard input, storing successive
space-separated values into successive arguments. Newlines count
as space. It returns the number of items successfully scanned.
If that is less than the number of arguments, err will report why.

Scanf scans text read from standard input, storing successive
space-separated values into successive arguments as determined by
the format. It returns the number of items successfully scanned.
If that is less than the number of arguments, err will report why.
Newlines in the input must match newlines in the format.
The one exception: the verb %c always scans the next rune in the
input, even if it is a space (or tab etc.) or newline.

Scanln is similar to Scan, but stops scanning at a newline and
after the final item there must be a newline or EOF.

Sprint formats using the default formats for its operands and returns the resulting string.
Spaces are added between operands when neither is a string.

package main

import (
	"fmt"
	"io"
	"os"
)

func main() {
	const name, age = "Kim", 22
	s := fmt.Sprint(name, " is ", age, " years old.n")

	io.WriteString(os.Stdout, s) // Ignoring error for simplicity.

}
Output:

Kim is 22 years old.

Sprintf formats according to a format specifier and returns the resulting string.

package main

import (
	"fmt"
	"io"
	"os"
)

func main() {
	const name, age = "Kim", 22
	s := fmt.Sprintf("%s is %d years old.n", name, age)

	io.WriteString(os.Stdout, s) // Ignoring error for simplicity.

}
Output:

Kim is 22 years old.

Sprintln formats using the default formats for its operands and returns the resulting string.
Spaces are always added between operands and a newline is appended.

package main

import (
	"fmt"
	"io"
	"os"
)

func main() {
	const name, age = "Kim", 22
	s := fmt.Sprintln(name, "is", age, "years old.")

	io.WriteString(os.Stdout, s) // Ignoring error for simplicity.

}
Output:

Kim is 22 years old.

Sscan scans the argument string, storing successive space-separated
values into successive arguments. Newlines count as space. It
returns the number of items successfully scanned. If that is less
than the number of arguments, err will report why.

Sscanf scans the argument string, storing successive space-separated
values into successive arguments as determined by the format. It
returns the number of items successfully parsed.
Newlines in the input must match newlines in the format.

package main

import (
	"fmt"
)

func main() {
	var name string
	var age int
	n, err := fmt.Sscanf("Kim is 22 years old", "%s is %d years old", &name, &age)
	if err != nil {
		panic(err)
	}
	fmt.Printf("%d: %s, %dn", n, name, age)

}
Output:

2: Kim, 22

Sscanln is similar to Sscan, but stops scanning at a newline and
after the final item there must be a newline or EOF.

type Formatter interface {
	Format(f State, verb rune)
}

Formatter is implemented by any value that has a Format method.
The implementation controls how State and rune are interpreted,
and may call Sprint(f) or Fprint(f) etc. to generate its output.

type GoStringer interface {
	GoString() string
}

GoStringer is implemented by any value that has a GoString method,
which defines the Go syntax for that value.
The GoString method is used to print values passed as an operand
to a %#v format.

package main

import (
	"fmt"
)

// Address has a City, State and a Country.
type Address struct {
	City    string
	State   string
	Country string
}

// Person has a Name, Age and Address.
type Person struct {
	Name string
	Age  uint
	Addr *Address
}

// GoString makes Person satisfy the GoStringer interface.
// The return value is valid Go code that can be used to reproduce the Person struct.
func (p Person) GoString() string {
	if p.Addr != nil {
		return fmt.Sprintf("Person{Name: %q, Age: %d, Addr: &Address{City: %q, State: %q, Country: %q}}", p.Name, int(p.Age), p.Addr.City, p.Addr.State, p.Addr.Country)
	}
	return fmt.Sprintf("Person{Name: %q, Age: %d}", p.Name, int(p.Age))
}

func main() {
	p1 := Person{
		Name: "Warren",
		Age:  31,
		Addr: &Address{
			City:    "Denver",
			State:   "CO",
			Country: "U.S.A.",
		},
	}
	// If GoString() wasn't implemented, the output of `fmt.Printf("%#v", p1)` would be similar to
	// Person{Name:"Warren", Age:0x1f, Addr:(*main.Address)(0x10448240)}
	fmt.Printf("%#vn", p1)

	p2 := Person{
		Name: "Theia",
		Age:  4,
	}
	// If GoString() wasn't implemented, the output of `fmt.Printf("%#v", p2)` would be similar to
	// Person{Name:"Theia", Age:0x4, Addr:(*main.Address)(nil)}
	fmt.Printf("%#vn", p2)

}
Output:

Person{Name: "Warren", Age: 31, Addr: &Address{City: "Denver", State: "CO", Country: "U.S.A."}}
Person{Name: "Theia", Age: 4}

ScanState represents the scanner state passed to custom scanners.
Scanners may do rune-at-a-time scanning or ask the ScanState
to discover the next space-delimited token.

type Scanner interface {
	Scan(state ScanState, verb rune) error
}

Scanner is implemented by any value that has a Scan method, which scans
the input for the representation of a value and stores the result in the
receiver, which must be a pointer to be useful. The Scan method is called
for any argument to Scan, Scanf, or Scanln that implements it.

State represents the printer state passed to custom formatters.
It provides access to the io.Writer interface plus information about
the flags and options for the operand’s format specifier.

type Stringer interface {
	String() string
}

Stringer is implemented by any value that has a String method,
which defines the “native” format for that value.
The String method is used to print values passed as an operand
to any format that accepts a string or to an unformatted printer
such as Print.

package main

import (
	"fmt"
)

// Animal has a Name and an Age to represent an animal.
type Animal struct {
	Name string
	Age  uint
}

// String makes Animal satisfy the Stringer interface.
func (a Animal) String() string {
	return fmt.Sprintf("%v (%d)", a.Name, a.Age)
}

func main() {
	a := Animal{
		Name: "Gopher",
		Age:  2,
	}
	fmt.Println(a)
}
Output:

Gopher (2)
import "fmt"
Overview
Index
Examples

Overview ▸

Overview ▾

Package fmt implements formatted I/O with functions analogous
to C’s printf and scanf. The format ‘verbs’ are derived from C’s but
are simpler.

Printing

The verbs:

General:

%v	the value in a default format
	when printing structs, the plus flag (%+v) adds field names
%#v	a Go-syntax representation of the value
%T	a Go-syntax representation of the type of the value
%%	a literal percent sign; consumes no value

Boolean:

%t	the word true or false

Integer:

%b	base 2
%c	the character represented by the corresponding Unicode code point
%d	base 10
%o	base 8
%O	base 8 with 0o prefix
%q	a single-quoted character literal safely escaped with Go syntax.
%x	base 16, with lower-case letters for a-f
%X	base 16, with upper-case letters for A-F
%U	Unicode format: U+1234; same as "U+%04X"

Floating-point and complex constituents:

%b	decimalless scientific notation with exponent a power of two,
	in the manner of strconv.FormatFloat with the 'b' format,
	e.g. -123456p-78
%e	scientific notation, e.g. -1.234456e+78
%E	scientific notation, e.g. -1.234456E+78
%f	decimal point but no exponent, e.g. 123.456
%F	synonym for %f
%g	%e for large exponents, %f otherwise. Precision is discussed below.
%G	%E for large exponents, %F otherwise
%x	hexadecimal notation (with decimal power of two exponent), e.g. -0x1.23abcp+20
%X	upper-case hexadecimal notation, e.g. -0X1.23ABCP+20

String and slice of bytes (treated equivalently with these verbs):

%s	the uninterpreted bytes of the string or slice
%q	a double-quoted string safely escaped with Go syntax
%x	base 16, lower-case, two characters per byte
%X	base 16, upper-case, two characters per byte

Slice:

%p	address of 0th element in base 16 notation, with leading 0x

Pointer:

%p	base 16 notation, with leading 0x
The %b, %d, %o, %x and %X verbs also work with pointers,
formatting the value exactly as if it were an integer.

The default format for %v is:

bool:                    %t
int, int8 etc.:          %d
uint, uint8 etc.:        %d, %#x if printed with %#v
float32, complex64, etc: %g
string:                  %s
chan:                    %p
pointer:                 %p

For compound objects, the elements are printed using these rules, recursively,
laid out like this:

struct:             {field0 field1 ...}
array, slice:       [elem0 elem1 ...]
maps:               map[key1:value1 key2:value2 ...]
pointer to above:   &{}, &[], &map[]

Width is specified by an optional decimal number immediately preceding the verb.
If absent, the width is whatever is necessary to represent the value.
Precision is specified after the (optional) width by a period followed by a
decimal number. If no period is present, a default precision is used.
A period with no following number specifies a precision of zero.
Examples:

%f     default width, default precision
%9f    width 9, default precision
%.2f   default width, precision 2
%9.2f  width 9, precision 2
%9.f   width 9, precision 0

Width and precision are measured in units of Unicode code points,
that is, runes. (This differs from C’s printf where the
units are always measured in bytes.) Either or both of the flags
may be replaced with the character ‘*’, causing their values to be
obtained from the next operand (preceding the one to format),
which must be of type int.

For most values, width is the minimum number of runes to output,
padding the formatted form with spaces if necessary.

For strings, byte slices and byte arrays, however, precision
limits the length of the input to be formatted (not the size of
the output), truncating if necessary. Normally it is measured in
runes, but for these types when formatted with the %x or %X format
it is measured in bytes.

For floating-point values, width sets the minimum width of the field and
precision sets the number of places after the decimal, if appropriate,
except that for %g/%G precision sets the maximum number of significant
digits (trailing zeros are removed). For example, given 12.345 the format
%6.3f prints 12.345 while %.3g prints 12.3. The default precision for %e, %f
and %#g is 6; for %g it is the smallest number of digits necessary to identify
the value uniquely.

For complex numbers, the width and precision apply to the two
components independently and the result is parenthesized, so %f applied
to 1.2+3.4i produces (1.200000+3.400000i).

When formatting a single integer code point or a rune string (type []rune)
with %q, invalid Unicode code points are changed to the Unicode replacement
character, U+FFFD, as in strconv.QuoteRune.

Other flags:

'+'	always print a sign for numeric values;
	guarantee ASCII-only output for %q (%+q)
'-'	pad with spaces on the right rather than the left (left-justify the field)
'#'	alternate format: add leading 0b for binary (%#b), 0 for octal (%#o),
	0x or 0X for hex (%#x or %#X); suppress 0x for %p (%#p);
	for %q, print a raw (backquoted) string if strconv.CanBackquote
	returns true;
	always print a decimal point for %e, %E, %f, %F, %g and %G;
	do not remove trailing zeros for %g and %G;
	write e.g. U+0078 'x' if the character is printable for %U (%#U).
' '	(space) leave a space for elided sign in numbers (% d);
	put spaces between bytes printing strings or slices in hex (% x, % X)
'0'	pad with leading zeros rather than spaces;
	for numbers, this moves the padding after the sign;
	ignored for strings, byte slices and byte arrays

Flags are ignored by verbs that do not expect them.
For example there is no alternate decimal format, so %#d and %d
behave identically.

For each Printf-like function, there is also a Print function
that takes no format and is equivalent to saying %v for every
operand. Another variant Println inserts blanks between
operands and appends a newline.

Regardless of the verb, if an operand is an interface value,
the internal concrete value is used, not the interface itself.
Thus:

var i interface{} = 23
fmt.Printf("%vn", i)

will print 23.

Except when printed using the verbs %T and %p, special
formatting considerations apply for operands that implement
certain interfaces. In order of application:

1. If the operand is a reflect.Value, the operand is replaced by the
concrete value that it holds, and printing continues with the next rule.

2. If an operand implements the Formatter interface, it will
be invoked. In this case the interpretation of verbs and flags is
controlled by that implementation.

3. If the %v verb is used with the # flag (%#v) and the operand
implements the GoStringer interface, that will be invoked.

If the format (which is implicitly %v for Println etc.) is valid
for a string (%s %q %v %x %X), the following two rules apply:

4. If an operand implements the error interface, the Error method
will be invoked to convert the object to a string, which will then
be formatted as required by the verb (if any).

5. If an operand implements method String() string, that method
will be invoked to convert the object to a string, which will then
be formatted as required by the verb (if any).

For compound operands such as slices and structs, the format
applies to the elements of each operand, recursively, not to the
operand as a whole. Thus %q will quote each element of a slice
of strings, and %6.2f will control formatting for each element
of a floating-point array.

However, when printing a byte slice with a string-like verb
(%s %q %x %X), it is treated identically to a string, as a single item.

To avoid recursion in cases such as

type X string
func (x X) String() string { return Sprintf("<%s>", x) }

convert the value before recurring:

func (x X) String() string { return Sprintf("<%s>", string(x)) }

Infinite recursion can also be triggered by self-referential data
structures, such as a slice that contains itself as an element, if
that type has a String method. Such pathologies are rare, however,
and the package does not protect against them.

When printing a struct, fmt cannot and therefore does not invoke
formatting methods such as Error or String on unexported fields.

Explicit argument indexes

In Printf, Sprintf, and Fprintf, the default behavior is for each
formatting verb to format successive arguments passed in the call.
However, the notation [n] immediately before the verb indicates that the
nth one-indexed argument is to be formatted instead. The same notation
before a ‘*’ for a width or precision selects the argument index holding
the value. After processing a bracketed expression [n], subsequent verbs
will use arguments n+1, n+2, etc. unless otherwise directed.

For example,

fmt.Sprintf("%[2]d %[1]dn", 11, 22)

will yield «22 11», while

fmt.Sprintf("%[3]*.[2]*[1]f", 12.0, 2, 6)

equivalent to

fmt.Sprintf("%6.2f", 12.0)

will yield » 12.00″. Because an explicit index affects subsequent verbs,
this notation can be used to print the same values multiple times
by resetting the index for the first argument to be repeated:

fmt.Sprintf("%d %d %#[1]x %#x", 16, 17)

will yield «16 17 0x10 0x11».

Format errors

If an invalid argument is given for a verb, such as providing
a string to %d, the generated string will contain a
description of the problem, as in these examples:

Wrong type or unknown verb: %!verb(type=value)
	Printf("%d", "hi"):        %!d(string=hi)
Too many arguments: %!(EXTRA type=value)
	Printf("hi", "guys"):      hi%!(EXTRA string=guys)
Too few arguments: %!verb(MISSING)
	Printf("hi%d"):            hi%!d(MISSING)
Non-int for width or precision: %!(BADWIDTH) or %!(BADPREC)
	Printf("%*s", 4.5, "hi"):  %!(BADWIDTH)hi
	Printf("%.*s", 4.5, "hi"): %!(BADPREC)hi
Invalid or invalid use of argument index: %!(BADINDEX)
	Printf("%*[2]d", 7):       %!d(BADINDEX)
	Printf("%.[2]d", 7):       %!d(BADINDEX)

All errors begin with the string «%!» followed sometimes
by a single character (the verb) and end with a parenthesized
description.

If an Error or String method triggers a panic when called by a
print routine, the fmt package reformats the error message
from the panic, decorating it with an indication that it came
through the fmt package. For example, if a String method
calls panic(«bad»), the resulting formatted message will look
like

%!s(PANIC=bad)

The %!s just shows the print verb in use when the failure
occurred. If the panic is caused by a nil receiver to an Error
or String method, however, the output is the undecorated
string, «<nil>».

Scanning

An analogous set of functions scans formatted text to yield
values. Scan, Scanf and Scanln read from os.Stdin; Fscan,
Fscanf and Fscanln read from a specified io.Reader; Sscan,
Sscanf and Sscanln read from an argument string.

Scan, Fscan, Sscan treat newlines in the input as spaces.

Scanln, Fscanln and Sscanln stop scanning at a newline and
require that the items be followed by a newline or EOF.

Scanf, Fscanf, and Sscanf parse the arguments according to a
format string, analogous to that of Printf. In the text that
follows, ‘space’ means any Unicode whitespace character
except newline.

In the format string, a verb introduced by the % character
consumes and parses input; these verbs are described in more
detail below. A character other than %, space, or newline in
the format consumes exactly that input character, which must
be present. A newline with zero or more spaces before it in
the format string consumes zero or more spaces in the input
followed by a single newline or the end of the input. A space
following a newline in the format string consumes zero or more
spaces in the input. Otherwise, any run of one or more spaces
in the format string consumes as many spaces as possible in
the input. Unless the run of spaces in the format string
appears adjacent to a newline, the run must consume at least
one space from the input or find the end of the input.

The handling of spaces and newlines differs from that of C’s
scanf family: in C, newlines are treated as any other space,
and it is never an error when a run of spaces in the format
string finds no spaces to consume in the input.

The verbs behave analogously to those of Printf.
For example, %x will scan an integer as a hexadecimal number,
and %v will scan the default representation format for the value.
The Printf verbs %p and %T and the flags # and + are not implemented.
For floating-point and complex values, all valid formatting verbs
(%b %e %E %f %F %g %G %x %X and %v) are equivalent and accept
both decimal and hexadecimal notation (for example: «2.3e+7», «0x4.5p-8»)
and digit-separating underscores (for example: «3.14159_26535_89793»).

Input processed by verbs is implicitly space-delimited: the
implementation of every verb except %c starts by discarding
leading spaces from the remaining input, and the %s verb
(and %v reading into a string) stops consuming input at the first
space or newline character.

The familiar base-setting prefixes 0b (binary), 0o and 0 (octal),
and 0x (hexadecimal) are accepted when scanning integers
without a format or with the %v verb, as are digit-separating
underscores.

Width is interpreted in the input text but there is no
syntax for scanning with a precision (no %5.2f, just %5f).
If width is provided, it applies after leading spaces are
trimmed and specifies the maximum number of runes to read
to satisfy the verb. For example,

Sscanf(" 1234567 ", "%5s%d", &s, &i)

will set s to «12345» and i to 67 while

Sscanf(" 12 34 567 ", "%5s%d", &s, &i)

will set s to «12» and i to 34.

In all the scanning functions, a carriage return followed
immediately by a newline is treated as a plain newline
(rn means the same as n).

In all the scanning functions, if an operand implements method
Scan (that is, it implements the Scanner interface) that
method will be used to scan the text for that operand. Also,
if the number of arguments scanned is less than the number of
arguments provided, an error is returned.

All arguments to be scanned must be either pointers to basic
types or implementations of the Scanner interface.

Like Scanf and Fscanf, Sscanf need not consume its entire input.
There is no way to recover how much of the input string Sscanf used.

Note: Fscan etc. can read one character (rune) past the input
they return, which means that a loop calling a scan routine
may skip some of the input. This is usually a problem only
when there is no space between input values. If the reader
provided to Fscan implements ReadRune, that method will be used
to read characters. If the reader also implements UnreadRune,
that method will be used to save the character and successive
calls will not lose data. To attach ReadRune and UnreadRune
methods to a reader without that capability, use
bufio.NewReader.

Example (Formats)

Example (Formats)

These examples demonstrate the basics of printing using a format string. Printf,
Sprintf, and Fprintf all take a format string that specifies how to format the
subsequent arguments. For example, %d (we call that a ‘verb’) says to print the
corresponding argument, which must be an integer (or something containing an
integer, such as a slice of ints) in decimal. The verb %v (‘v’ for ‘value’)
always formats the argument in its default form, just how Print or Println would
show it. The special verb %T (‘T’ for ‘Type’) prints the type of the argument
rather than its value. The examples are not exhaustive; see the package comment
for all the details.

23
23
23
int *int
true true
42 42 2a 52 101010
3.141592653589793 3.141592653589793 3.14 (  3.14) 3.141593e+00
(110.7+22.5i) (110.7+22.5i) (110.70+22.50i) (1.11e+02+2.25e+01i)
128512 128512 😀 '😀' U+1F600 U+1F600 '😀'
foo "bar" foo "bar" "foo "bar"" `foo "bar"`
map[dachshund:false peanut:true] map[string]bool{"dachshund":false, "peanut":true}
{Kim 22} {Name:Kim Age:22} struct { Name string; Age int }{Name:"Kim", Age:22}
&{Kim 22} 0x0
[Kitano Kobayashi Kurosawa Miyazaki Ozu] ["Kitano" "Kobayashi" "Kurosawa" "Miyazaki" "Ozu"]
[Kitano Kobayashi Kurosawa] ["Kitano" "Kobayashi" "Kurosawa"] []string{"Kitano", "Kobayashi", "Kurosawa"}
[97 226 140 152] [97 226 140 152] a⌘ "a⌘" 61e28c98 61 e2 8c 98
1973-11-29 21:33:09 +0000 UTC "1973-11-29 21:33:09 +0000 UTC"

Example (Printers)

Example (Printers)

Print, Println, and Printf lay out their arguments differently. In this example
we can compare their behaviors. Println always adds blanks between the items it
prints, while Print adds blanks only between non-string arguments and Printf
does exactly what it is told.
Sprint, Sprintln, Sprintf, Fprint, Fprintln, and Fprintf behave the same as
their corresponding Print, Println, and Printf functions shown here.

The vector (3 4) has length 5.
The vector ( 3 4 ) has length 5 .
The vector (3 4) has length 5.

Index ▸

Index ▾

func Append(b []byte, a …any) []byte
func Appendf(b []byte, format string, a …any) []byte
func Appendln(b []byte, a …any) []byte
func Errorf(format string, a …any) error
func FormatString(state State, verb rune) string
func Fprint(w io.Writer, a …any) (n int, err error)
func Fprintf(w io.Writer, format string, a …any) (n int, err error)
func Fprintln(w io.Writer, a …any) (n int, err error)
func Fscan(r io.Reader, a …any) (n int, err error)
func Fscanf(r io.Reader, format string, a …any) (n int, err error)
func Fscanln(r io.Reader, a …any) (n int, err error)
func Print(a …any) (n int, err error)
func Printf(format string, a …any) (n int, err error)
func Println(a …any) (n int, err error)
func Scan(a …any) (n int, err error)
func Scanf(format string, a …any) (n int, err error)
func Scanln(a …any) (n int, err error)
func Sprint(a …any) string
func Sprintf(format string, a …any) string
func Sprintln(a …any) string
func Sscan(str string, a …any) (n int, err error)
func Sscanf(str string, format string, a …any) (n int, err error)
func Sscanln(str string, a …any) (n int, err error)
type Formatter
type GoStringer
type ScanState
type Scanner
type State
type Stringer

Package files

doc.go

errors.go

format.go

print.go

scan.go

func Append

1.19

func Append(b []byte, a ...any) []byte

Append formats using the default formats for its operands, appends the result to
the byte slice, and returns the updated slice.

func Appendf

1.19

func Appendf(b []byte, format string, a ...any) []byte

Appendf formats according to a format specifier, appends the result to the byte
slice, and returns the updated slice.

func Appendln

1.19

func Appendln(b []byte, a ...any) []byte

Appendln formats using the default formats for its operands, appends the result
to the byte slice, and returns the updated slice. Spaces are always added
between operands and a newline is appended.

func Errorf

func Errorf(format string, a ...any) error

Errorf formats according to a format specifier and returns the string as a
value that satisfies error.

If the format specifier includes a %w verb with an error operand,
the returned error will implement an Unwrap method returning the operand.
If there is more than one %w verb, the returned error will implement an
Unwrap method returning a []error containing all the %w operands in the
order they appear in the arguments.
It is invalid to supply the %w verb with an operand that does not implement
the error interface. The %w verb is otherwise a synonym for %v.

Example

Example

The Errorf function lets us use formatting features
to create descriptive error messages.

user "bueller" (id 17) not found

func FormatString

1.20

func FormatString(state State, verb rune) string

FormatString returns a string representing the fully qualified formatting
directive captured by the State, followed by the argument verb. (State does not
itself contain the verb.) The result has a leading percent sign followed by any
flags, the width, and the precision. Missing flags, width, and precision are
omitted. This function allows a Formatter to reconstruct the original
directive triggering the call to Format.

func Fprint

func Fprint(w io.Writer, a ...any) (n int, err error)

Fprint formats using the default formats for its operands and writes to w.
Spaces are added between operands when neither is a string.
It returns the number of bytes written and any write error encountered.

Example

Example

Kim is 22 years old.
21 bytes written.

func Fprintf

func Fprintf(w io.Writer, format string, a ...any) (n int, err error)

Fprintf formats according to a format specifier and writes to w.
It returns the number of bytes written and any write error encountered.

Example

Example

Kim is 22 years old.
21 bytes written.

func Fprintln

func Fprintln(w io.Writer, a ...any) (n int, err error)

Fprintln formats using the default formats for its operands and writes to w.
Spaces are always added between operands and a newline is appended.
It returns the number of bytes written and any write error encountered.

Example

Example

Kim is 22 years old.
21 bytes written.

func Fscan

func Fscan(r io.Reader, a ...any) (n int, err error)

Fscan scans text read from r, storing successive space-separated
values into successive arguments. Newlines count as space. It
returns the number of items successfully scanned. If that is less
than the number of arguments, err will report why.

func Fscanf

func Fscanf(r io.Reader, format string, a ...any) (n int, err error)

Fscanf scans text read from r, storing successive space-separated
values into successive arguments as determined by the format. It
returns the number of items successfully parsed.
Newlines in the input must match newlines in the format.

func Fscanln

func Fscanln(r io.Reader, a ...any) (n int, err error)

Fscanln is similar to Fscan, but stops scanning at a newline and
after the final item there must be a newline or EOF.

Example

Example

3: dmr, 1771, 1.618034
3: ken, 271828, 3.141590

func Print

func Print(a ...any) (n int, err error)

Print formats using the default formats for its operands and writes to standard output.
Spaces are added between operands when neither is a string.
It returns the number of bytes written and any write error encountered.

func Printf

func Printf(format string, a ...any) (n int, err error)

Printf formats according to a format specifier and writes to standard output.
It returns the number of bytes written and any write error encountered.

func Println

func Println(a ...any) (n int, err error)

Println formats using the default formats for its operands and writes to standard output.
Spaces are always added between operands and a newline is appended.
It returns the number of bytes written and any write error encountered.

func Scan

func Scan(a ...any) (n int, err error)

Scan scans text read from standard input, storing successive
space-separated values into successive arguments. Newlines count
as space. It returns the number of items successfully scanned.
If that is less than the number of arguments, err will report why.

func Scanf

func Scanf(format string, a ...any) (n int, err error)

Scanf scans text read from standard input, storing successive
space-separated values into successive arguments as determined by
the format. It returns the number of items successfully scanned.
If that is less than the number of arguments, err will report why.
Newlines in the input must match newlines in the format.
The one exception: the verb %c always scans the next rune in the
input, even if it is a space (or tab etc.) or newline.

func Scanln

func Scanln(a ...any) (n int, err error)

Scanln is similar to Scan, but stops scanning at a newline and
after the final item there must be a newline or EOF.

func Sprint

func Sprint(a ...any) string

Sprint formats using the default formats for its operands and returns the resulting string.
Spaces are added between operands when neither is a string.

func Sprintf

func Sprintf(format string, a ...any) string

Sprintf formats according to a format specifier and returns the resulting string.

func Sprintln

func Sprintln(a ...any) string

Sprintln formats using the default formats for its operands and returns the resulting string.
Spaces are always added between operands and a newline is appended.

func Sscan

func Sscan(str string, a ...any) (n int, err error)

Sscan scans the argument string, storing successive space-separated
values into successive arguments. Newlines count as space. It
returns the number of items successfully scanned. If that is less
than the number of arguments, err will report why.

func Sscanf

func Sscanf(str string, format string, a ...any) (n int, err error)

Sscanf scans the argument string, storing successive space-separated
values into successive arguments as determined by the format. It
returns the number of items successfully parsed.
Newlines in the input must match newlines in the format.

func Sscanln

func Sscanln(str string, a ...any) (n int, err error)

Sscanln is similar to Sscan, but stops scanning at a newline and
after the final item there must be a newline or EOF.

type Formatter

Formatter is implemented by any value that has a Format method.
The implementation controls how State and rune are interpreted,
and may call Sprint(f) or Fprint(f) etc. to generate its output.

type Formatter interface {
    Format(f State, verb rune)
}

type GoStringer

GoStringer is implemented by any value that has a GoString method,
which defines the Go syntax for that value.
The GoString method is used to print values passed as an operand
to a %#v format.

type GoStringer interface {
    GoString() string
}

Example

Example

Person{Name: "Warren", Age: 31, Addr: &Address{City: "Denver", State: "CO", Country: "U.S.A."}}
Person{Name: "Theia", Age: 4}

type ScanState

ScanState represents the scanner state passed to custom scanners.
Scanners may do rune-at-a-time scanning or ask the ScanState
to discover the next space-delimited token.

type ScanState interface {
    
    
    
    
    ReadRune() (r rune, size int, err error)
    
    UnreadRune() error
    
    
    
    SkipSpace()
    
    
    
    
    
    
    
    
    Token(skipSpace bool, f func(rune) bool) (token []byte, err error)
    
    
    Width() (wid int, ok bool)
    
    
    
    Read(buf []byte) (n int, err error)
}

type Scanner

Scanner is implemented by any value that has a Scan method, which scans
the input for the representation of a value and stores the result in the
receiver, which must be a pointer to be useful. The Scan method is called
for any argument to Scan, Scanf, or Scanln that implements it.

type Scanner interface {
    Scan(state ScanState, verb rune) error
}

type State

State represents the printer state passed to custom formatters.
It provides access to the io.Writer interface plus information about
the flags and options for the operand’s format specifier.

type State interface {
    
    Write(b []byte) (n int, err error)
    
    Width() (wid int, ok bool)
    
    Precision() (prec int, ok bool)

    
    Flag(c int) bool
}

type Stringer

Stringer is implemented by any value that has a String method,
which defines the “native” format for that value.
The String method is used to print values passed as an operand
to any format that accepts a string or to an unformatted printer
such as Print.

type Stringer interface {
    String() string
}

Package fmt

import "fmt"
Overview
Index
Examples

Overview ▹

Overview ▾

Package fmt implements formatted I/O with functions analogous
to C’s printf and scanf. The format ‘verbs’ are derived from C’s but
are simpler.

Printing

The verbs:

General:

%v	the value in a default format
	when printing structs, the plus flag (%+v) adds field names
%#v	a Go-syntax representation of the value
%T	a Go-syntax representation of the type of the value
%%	a literal percent sign; consumes no value

Boolean:

%t	the word true or false

Integer:

%b	base 2
%c	the character represented by the corresponding Unicode code point
%d	base 10
%o	base 8
%O	base 8 with 0o prefix
%q	a single-quoted character literal safely escaped with Go syntax.
%x	base 16, with lower-case letters for a-f
%X	base 16, with upper-case letters for A-F
%U	Unicode format: U+1234; same as "U+%04X"

Floating-point and complex constituents:

%b	decimalless scientific notation with exponent a power of two,
	in the manner of strconv.FormatFloat with the 'b' format,
	e.g. -123456p-78
%e	scientific notation, e.g. -1.234456e+78
%E	scientific notation, e.g. -1.234456E+78
%f	decimal point but no exponent, e.g. 123.456
%F	synonym for %f
%g	%e for large exponents, %f otherwise. Precision is discussed below.
%G	%E for large exponents, %F otherwise
%x	hexadecimal notation (with decimal power of two exponent), e.g. -0x1.23abcp+20
%X	upper-case hexadecimal notation, e.g. -0X1.23ABCP+20

String and slice of bytes (treated equivalently with these verbs):

%s	the uninterpreted bytes of the string or slice
%q	a double-quoted string safely escaped with Go syntax
%x	base 16, lower-case, two characters per byte
%X	base 16, upper-case, two characters per byte

Slice:

%p	address of 0th element in base 16 notation, with leading 0x

Pointer:

%p	base 16 notation, with leading 0x
The %b, %d, %o, %x and %X verbs also work with pointers,
formatting the value exactly as if it were an integer.

The default format for %v is:

bool:                    %t
int, int8 etc.:          %d
uint, uint8 etc.:        %d, %#x if printed with %#v
float32, complex64, etc: %g
string:                  %s
chan:                    %p
pointer:                 %p

For compound objects, the elements are printed using these rules, recursively,
laid out like this:

struct:             {field0 field1 ...}
array, slice:       [elem0 elem1 ...]
maps:               map[key1:value1 key2:value2 ...]
pointer to above:   &{}, &[], &map[]

Width is specified by an optional decimal number immediately preceding the verb.
If absent, the width is whatever is necessary to represent the value.
Precision is specified after the (optional) width by a period followed by a
decimal number. If no period is present, a default precision is used.
A period with no following number specifies a precision of zero.
Examples:

%f     default width, default precision
%9f    width 9, default precision
%.2f   default width, precision 2
%9.2f  width 9, precision 2
%9.f   width 9, precision 0

Width and precision are measured in units of Unicode code points,
that is, runes. (This differs from C’s printf where the
units are always measured in bytes.) Either or both of the flags
may be replaced with the character ‘*’, causing their values to be
obtained from the next operand (preceding the one to format),
which must be of type int.

For most values, width is the minimum number of runes to output,
padding the formatted form with spaces if necessary.

For strings, byte slices and byte arrays, however, precision
limits the length of the input to be formatted (not the size of
the output), truncating if necessary. Normally it is measured in
runes, but for these types when formatted with the %x or %X format
it is measured in bytes.

For floating-point values, width sets the minimum width of the field and
precision sets the number of places after the decimal, if appropriate,
except that for %g/%G precision sets the maximum number of significant
digits (trailing zeros are removed). For example, given 12.345 the format
%6.3f prints 12.345 while %.3g prints 12.3. The default precision for %e, %f
and %#g is 6; for %g it is the smallest number of digits necessary to identify
the value uniquely.

For complex numbers, the width and precision apply to the two
components independently and the result is parenthesized, so %f applied
to 1.2+3.4i produces (1.200000+3.400000i).

Other flags:

+	always print a sign for numeric values;
	guarantee ASCII-only output for %q (%+q)
-	pad with spaces on the right rather than the left (left-justify the field)
#	alternate format: add leading 0b for binary (%#b), 0 for octal (%#o),
	0x or 0X for hex (%#x or %#X); suppress 0x for %p (%#p);
	for %q, print a raw (backquoted) string if strconv.CanBackquote
	returns true;
	always print a decimal point for %e, %E, %f, %F, %g and %G;
	do not remove trailing zeros for %g and %G;
	write e.g. U+0078 'x' if the character is printable for %U (%#U).
' '	(space) leave a space for elided sign in numbers (% d);
	put spaces between bytes printing strings or slices in hex (% x, % X)
0	pad with leading zeros rather than spaces;
	for numbers, this moves the padding after the sign

Flags are ignored by verbs that do not expect them.
For example there is no alternate decimal format, so %#d and %d
behave identically.

For each Printf-like function, there is also a Print function
that takes no format and is equivalent to saying %v for every
operand. Another variant Println inserts blanks between
operands and appends a newline.

Regardless of the verb, if an operand is an interface value,
the internal concrete value is used, not the interface itself.
Thus:

var i interface{} = 23
fmt.Printf("%vn", i)

will print 23.

Except when printed using the verbs %T and %p, special
formatting considerations apply for operands that implement
certain interfaces. In order of application:

1. If the operand is a reflect.Value, the operand is replaced by the
concrete value that it holds, and printing continues with the next rule.

2. If an operand implements the Formatter interface, it will
be invoked. In this case the interpretation of verbs and flags is
controlled by that implementation.

3. If the %v verb is used with the # flag (%#v) and the operand
implements the GoStringer interface, that will be invoked.

If the format (which is implicitly %v for Println etc.) is valid
for a string (%s %q %v %x %X), the following two rules apply:

4. If an operand implements the error interface, the Error method
will be invoked to convert the object to a string, which will then
be formatted as required by the verb (if any).

5. If an operand implements method String() string, that method
will be invoked to convert the object to a string, which will then
be formatted as required by the verb (if any).

For compound operands such as slices and structs, the format
applies to the elements of each operand, recursively, not to the
operand as a whole. Thus %q will quote each element of a slice
of strings, and %6.2f will control formatting for each element
of a floating-point array.

However, when printing a byte slice with a string-like verb
(%s %q %x %X), it is treated identically to a string, as a single item.

To avoid recursion in cases such as

type X string
func (x X) String() string { return Sprintf("<%s>", x) }

convert the value before recurring:

func (x X) String() string { return Sprintf("<%s>", string(x)) }

Infinite recursion can also be triggered by self-referential data
structures, such as a slice that contains itself as an element, if
that type has a String method. Such pathologies are rare, however,
and the package does not protect against them.

When printing a struct, fmt cannot and therefore does not invoke
formatting methods such as Error or String on unexported fields.

Explicit argument indexes

In Printf, Sprintf, and Fprintf, the default behavior is for each
formatting verb to format successive arguments passed in the call.
However, the notation [n] immediately before the verb indicates that the
nth one-indexed argument is to be formatted instead. The same notation
before a ‘*’ for a width or precision selects the argument index holding
the value. After processing a bracketed expression [n], subsequent verbs
will use arguments n+1, n+2, etc. unless otherwise directed.

For example,

fmt.Sprintf("%[2]d %[1]dn", 11, 22)

will yield «22 11», while

fmt.Sprintf("%[3]*.[2]*[1]f", 12.0, 2, 6)

equivalent to

fmt.Sprintf("%6.2f", 12.0)

will yield » 12.00″. Because an explicit index affects subsequent verbs,
this notation can be used to print the same values multiple times
by resetting the index for the first argument to be repeated:

fmt.Sprintf("%d %d %#[1]x %#x", 16, 17)

will yield «16 17 0x10 0x11».

Format errors

If an invalid argument is given for a verb, such as providing
a string to %d, the generated string will contain a
description of the problem, as in these examples:

Wrong type or unknown verb: %!verb(type=value)
	Printf("%d", "hi"):        %!d(string=hi)
Too many arguments: %!(EXTRA type=value)
	Printf("hi", "guys"):      hi%!(EXTRA string=guys)
Too few arguments: %!verb(MISSING)
	Printf("hi%d"):            hi%!d(MISSING)
Non-int for width or precision: %!(BADWIDTH) or %!(BADPREC)
	Printf("%*s", 4.5, "hi"):  %!(BADWIDTH)hi
	Printf("%.*s", 4.5, "hi"): %!(BADPREC)hi
Invalid or invalid use of argument index: %!(BADINDEX)
	Printf("%*[2]d", 7):       %!d(BADINDEX)
	Printf("%.[2]d", 7):       %!d(BADINDEX)

All errors begin with the string «%!» followed sometimes
by a single character (the verb) and end with a parenthesized
description.

If an Error or String method triggers a panic when called by a
print routine, the fmt package reformats the error message
from the panic, decorating it with an indication that it came
through the fmt package. For example, if a String method
calls panic(«bad»), the resulting formatted message will look
like

%!s(PANIC=bad)

The %!s just shows the print verb in use when the failure
occurred. If the panic is caused by a nil receiver to an Error
or String method, however, the output is the undecorated
string, «<nil>».

Scanning

An analogous set of functions scans formatted text to yield
values. Scan, Scanf and Scanln read from os.Stdin; Fscan,
Fscanf and Fscanln read from a specified io.Reader; Sscan,
Sscanf and Sscanln read from an argument string.

Scan, Fscan, Sscan treat newlines in the input as spaces.

Scanln, Fscanln and Sscanln stop scanning at a newline and
require that the items be followed by a newline or EOF.

Scanf, Fscanf, and Sscanf parse the arguments according to a
format string, analogous to that of Printf. In the text that
follows, ‘space’ means any Unicode whitespace character
except newline.

In the format string, a verb introduced by the % character
consumes and parses input; these verbs are described in more
detail below. A character other than %, space, or newline in
the format consumes exactly that input character, which must
be present. A newline with zero or more spaces before it in
the format string consumes zero or more spaces in the input
followed by a single newline or the end of the input. A space
following a newline in the format string consumes zero or more
spaces in the input. Otherwise, any run of one or more spaces
in the format string consumes as many spaces as possible in
the input. Unless the run of spaces in the format string
appears adjacent to a newline, the run must consume at least
one space from the input or find the end of the input.

The handling of spaces and newlines differs from that of C’s
scanf family: in C, newlines are treated as any other space,
and it is never an error when a run of spaces in the format
string finds no spaces to consume in the input.

The verbs behave analogously to those of Printf.
For example, %x will scan an integer as a hexadecimal number,
and %v will scan the default representation format for the value.
The Printf verbs %p and %T and the flags # and + are not implemented.
For floating-point and complex values, all valid formatting verbs
(%b %e %E %f %F %g %G %x %X and %v) are equivalent and accept
both decimal and hexadecimal notation (for example: «2.3e+7», «0x4.5p-8»)
and digit-separating underscores (for example: «3.14159_26535_89793»).

Input processed by verbs is implicitly space-delimited: the
implementation of every verb except %c starts by discarding
leading spaces from the remaining input, and the %s verb
(and %v reading into a string) stops consuming input at the first
space or newline character.

The familiar base-setting prefixes 0b (binary), 0o and 0 (octal),
and 0x (hexadecimal) are accepted when scanning integers
without a format or with the %v verb, as are digit-separating
underscores.

Width is interpreted in the input text but there is no
syntax for scanning with a precision (no %5.2f, just %5f).
If width is provided, it applies after leading spaces are
trimmed and specifies the maximum number of runes to read
to satisfy the verb. For example,

Sscanf(" 1234567 ", "%5s%d", &s, &i)

will set s to «12345» and i to 67 while

Sscanf(" 12 34 567 ", "%5s%d", &s, &i)

will set s to «12» and i to 34.

In all the scanning functions, a carriage return followed
immediately by a newline is treated as a plain newline
(rn means the same as n).

In all the scanning functions, if an operand implements method
Scan (that is, it implements the Scanner interface) that
method will be used to scan the text for that operand. Also,
if the number of arguments scanned is less than the number of
arguments provided, an error is returned.

All arguments to be scanned must be either pointers to basic
types or implementations of the Scanner interface.

Like Scanf and Fscanf, Sscanf need not consume its entire input.
There is no way to recover how much of the input string Sscanf used.

Note: Fscan etc. can read one character (rune) past the input
they return, which means that a loop calling a scan routine
may skip some of the input. This is usually a problem only
when there is no space between input values. If the reader
provided to Fscan implements ReadRune, that method will be used
to read characters. If the reader also implements UnreadRune,
that method will be used to save the character and successive
calls will not lose data. To attach ReadRune and UnreadRune
methods to a reader without that capability, use
bufio.NewReader.

Example (Formats)

Example (Formats)

These examples demonstrate the basics of printing using a format string. Printf,
Sprintf, and Fprintf all take a format string that specifies how to format the
subsequent arguments. For example, %d (we call that a ‘verb’) says to print the
corresponding argument, which must be an integer (or something containing an
integer, such as a slice of ints) in decimal. The verb %v (‘v’ for ‘value’)
always formats the argument in its default form, just how Print or Println would
show it. The special verb %T (‘T’ for ‘Type’) prints the type of the argument
rather than its value. The examples are not exhaustive; see the package comment
for all the details.

23
23
23
int *int
true true
42 42 2a 52 101010
3.141592653589793 3.141592653589793 3.14 (  3.14) 3.141593e+00
(110.7+22.5i) (110.7+22.5i) (110.70+22.50i) (1.11e+02+2.25e+01i)
128512 128512 😀 '😀' U+1F600 U+1F600 '😀'
foo "bar" foo "bar" "foo "bar"" `foo "bar"`
map[dachshund:false peanut:true] map[string]bool{"dachshund":false, "peanut":true}
{Kim 22} {Name:Kim Age:22} struct { Name string; Age int }{Name:"Kim", Age:22}
&{Kim 22} 0x0
[Kitano Kobayashi Kurosawa Miyazaki Ozu] ["Kitano" "Kobayashi" "Kurosawa" "Miyazaki" "Ozu"]
[Kitano Kobayashi Kurosawa] ["Kitano" "Kobayashi" "Kurosawa"] []string{"Kitano", "Kobayashi", "Kurosawa"}
[97 226 140 152] [97 226 140 152] a⌘ "a⌘" 61e28c98 61 e2 8c 98
1973-11-29 21:33:09 +0000 UTC "1973-11-29 21:33:09 +0000 UTC"

Example (Printers)

Example (Printers)

Print, Println, and Printf lay out their arguments differently. In this example
we can compare their behaviors. Println always adds blanks between the items it
prints, while Print adds blanks only between non-string arguments and Printf
does exactly what it is told.
Sprint, Sprintln, Sprintf, Fprint, Fprintln, and Fprintf behave the same as
their corresponding Print, Println, and Printf functions shown here.

The vector (3 4) has length 5.
The vector ( 3 4 ) has length 5 .
The vector (3 4) has length 5.

Index ▹

Index ▾

func Errorf(format string, a …interface{}) error
func Fprint(w io.Writer, a …interface{}) (n int, err error)
func Fprintf(w io.Writer, format string, a …interface{}) (n int, err error)
func Fprintln(w io.Writer, a …interface{}) (n int, err error)
func Fscan(r io.Reader, a …interface{}) (n int, err error)
func Fscanf(r io.Reader, format string, a …interface{}) (n int, err error)
func Fscanln(r io.Reader, a …interface{}) (n int, err error)
func Print(a …interface{}) (n int, err error)
func Printf(format string, a …interface{}) (n int, err error)
func Println(a …interface{}) (n int, err error)
func Scan(a …interface{}) (n int, err error)
func Scanf(format string, a …interface{}) (n int, err error)
func Scanln(a …interface{}) (n int, err error)
func Sprint(a …interface{}) string
func Sprintf(format string, a …interface{}) string
func Sprintln(a …interface{}) string
func Sscan(str string, a …interface{}) (n int, err error)
func Sscanf(str string, format string, a …interface{}) (n int, err error)
func Sscanln(str string, a …interface{}) (n int, err error)
type Formatter
type GoStringer
type ScanState
type Scanner
type State
type Stringer

Package files

doc.go

errors.go

format.go

print.go

scan.go

func Errorf

func Errorf(format string, a ...interface{}) error

Errorf formats according to a format specifier and returns the string as a
value that satisfies error.

If the format specifier includes a %w verb with an error operand,
the returned error will implement an Unwrap method returning the operand. It is
invalid to include more than one %w verb or to supply it with an operand
that does not implement the error interface. The %w verb is otherwise
a synonym for %v.

Example

Example

The Errorf function lets us use formatting features
to create descriptive error messages.

user "bueller" (id 17) not found

func Fprint

func Fprint(w io.Writer, a ...interface{}) (n int, err error)

Fprint formats using the default formats for its operands and writes to w.
Spaces are added between operands when neither is a string.
It returns the number of bytes written and any write error encountered.

Example

Example

Kim is 22 years old.
21 bytes written.

func Fprintf

func Fprintf(w io.Writer, format string, a ...interface{}) (n int, err error)

Fprintf formats according to a format specifier and writes to w.
It returns the number of bytes written and any write error encountered.

Example

Example

Kim is 22 years old.
21 bytes written.

func Fprintln

func Fprintln(w io.Writer, a ...interface{}) (n int, err error)

Fprintln formats using the default formats for its operands and writes to w.
Spaces are always added between operands and a newline is appended.
It returns the number of bytes written and any write error encountered.

Example

Example

Kim is 22 years old.
21 bytes written.

func Fscan

func Fscan(r io.Reader, a ...interface{}) (n int, err error)

Fscan scans text read from r, storing successive space-separated
values into successive arguments. Newlines count as space. It
returns the number of items successfully scanned. If that is less
than the number of arguments, err will report why.

func Fscanf

func Fscanf(r io.Reader, format string, a ...interface{}) (n int, err error)

Fscanf scans text read from r, storing successive space-separated
values into successive arguments as determined by the format. It
returns the number of items successfully parsed.
Newlines in the input must match newlines in the format.

func Fscanln

func Fscanln(r io.Reader, a ...interface{}) (n int, err error)

Fscanln is similar to Fscan, but stops scanning at a newline and
after the final item there must be a newline or EOF.

Example

Example

3: dmr, 1771, 1.618034
3: ken, 271828, 3.141590

func Print

func Print(a ...interface{}) (n int, err error)

Print formats using the default formats for its operands and writes to standard output.
Spaces are added between operands when neither is a string.
It returns the number of bytes written and any write error encountered.

func Printf

func Printf(format string, a ...interface{}) (n int, err error)

Printf formats according to a format specifier and writes to standard output.
It returns the number of bytes written and any write error encountered.

func Println

func Println(a ...interface{}) (n int, err error)

Println formats using the default formats for its operands and writes to standard output.
Spaces are always added between operands and a newline is appended.
It returns the number of bytes written and any write error encountered.

func Scan

func Scan(a ...interface{}) (n int, err error)

Scan scans text read from standard input, storing successive
space-separated values into successive arguments. Newlines count
as space. It returns the number of items successfully scanned.
If that is less than the number of arguments, err will report why.

func Scanf

func Scanf(format string, a ...interface{}) (n int, err error)

Scanf scans text read from standard input, storing successive
space-separated values into successive arguments as determined by
the format. It returns the number of items successfully scanned.
If that is less than the number of arguments, err will report why.
Newlines in the input must match newlines in the format.
The one exception: the verb %c always scans the next rune in the
input, even if it is a space (or tab etc.) or newline.

func Scanln

func Scanln(a ...interface{}) (n int, err error)

Scanln is similar to Scan, but stops scanning at a newline and
after the final item there must be a newline or EOF.

func Sprint

func Sprint(a ...interface{}) string

Sprint formats using the default formats for its operands and returns the resulting string.
Spaces are added between operands when neither is a string.

func Sprintf

func Sprintf(format string, a ...interface{}) string

Sprintf formats according to a format specifier and returns the resulting string.

func Sprintln

func Sprintln(a ...interface{}) string

Sprintln formats using the default formats for its operands and returns the resulting string.
Spaces are always added between operands and a newline is appended.

func Sscan

func Sscan(str string, a ...interface{}) (n int, err error)

Sscan scans the argument string, storing successive space-separated
values into successive arguments. Newlines count as space. It
returns the number of items successfully scanned. If that is less
than the number of arguments, err will report why.

func Sscanf

func Sscanf(str string, format string, a ...interface{}) (n int, err error)

Sscanf scans the argument string, storing successive space-separated
values into successive arguments as determined by the format. It
returns the number of items successfully parsed.
Newlines in the input must match newlines in the format.

func Sscanln

func Sscanln(str string, a ...interface{}) (n int, err error)

Sscanln is similar to Sscan, but stops scanning at a newline and
after the final item there must be a newline or EOF.

type Formatter

Formatter is implemented by any value that has a Format method.
The implementation controls how State and rune are interpreted,
and may call Sprint(f) or Fprint(f) etc. to generate its output.

type Formatter interface {
    Format(f State, verb rune)
}

type GoStringer

GoStringer is implemented by any value that has a GoString method,
which defines the Go syntax for that value.
The GoString method is used to print values passed as an operand
to a %#v format.

type GoStringer interface {
    GoString() string
}

Example

Example

Person{Name: "Warren", Age: 31, Addr: &Address{City: "Denver", State: "CO", Country: "U.S.A."}}
Person{Name: "Theia", Age: 4}

type ScanState

ScanState represents the scanner state passed to custom scanners.
Scanners may do rune-at-a-time scanning or ask the ScanState
to discover the next space-delimited token.

type ScanState interface {
    
    
    
    
    ReadRune() (r rune, size int, err error)
    
    UnreadRune() error
    
    
    
    SkipSpace()
    
    
    
    
    
    
    
    
    Token(skipSpace bool, f func(rune) bool) (token []byte, err error)
    
    
    Width() (wid int, ok bool)
    
    
    
    Read(buf []byte) (n int, err error)
}

type Scanner

Scanner is implemented by any value that has a Scan method, which scans
the input for the representation of a value and stores the result in the
receiver, which must be a pointer to be useful. The Scan method is called
for any argument to Scan, Scanf, or Scanln that implements it.

type Scanner interface {
    Scan(state ScanState, verb rune) error
}

type State

State represents the printer state passed to custom formatters.
It provides access to the io.Writer interface plus information about
the flags and options for the operand’s format specifier.

type State interface {
    
    Write(b []byte) (n int, err error)
    
    Width() (wid int, ok bool)
    
    Precision() (prec int, ok bool)

    
    Flag(c int) bool
}

type Stringer

Stringer is implemented by any value that has a String method,
which defines the “native” format for that value.
The String method is used to print values passed as an operand
to any format that accepts a string or to an unformatted printer
such as Print.

type Stringer interface {
    String() string
}

Improve Article

Save Article

  • Read
  • Discuss
  • Improve Article

    Save Article

    In Go language, fmt package implements formatted I/O with functions analogous to C’s printf() and scanf() function. The fmt.Printf() function in Go language formats according to a format specifier and writes to standard output. Moreover, this function is defined under the fmt package. Here, you need to import the “fmt” package in order to use these functions.

    Syntax: 

    func Printf(format string, a ...interface{}) (n int, err error)

    Parameters: This function accepts two parameters which are illustrated below: 

    • format string: This contains some strings along with some verbs.
    • a …interface{}: This contains specified constant variables.

    Return Value: It returns the number of bytes written and any write error encountered.

    Conversion Characters:

    Conversion Characters Description
    %b It is used to format base 2 numbers
    %o It is used to format base 8 numbers
    %O It is used to format base 8 numbers with 0o prefix
    %d It is used to format base 10 numbers with lower-case letters for a-f
    %x It is used to format base 16 numbers with upper-case letters for A-F
    %X It is used to format base 16 numbers
    %g It is used to format float values
    %s It is used to format string values
    %t It is used to format true or false values
    %e It is used to format scientific values

    Example 1:

    Go

    package main

    import (

        "fmt"

    )

    func main() {

        const name, dept = "GeeksforGeeks", "CS"

        fmt.Printf("%s is a %s Portal.n", name, dept)

    }

    Output: 

    GeeksforGeeks is a CS portal.

    Example 2:

    Go

    package main

    import (

        "fmt"

    )

    func main() {

        const num1, num2, num3 = 5, 10, 15

        fmt.Printf("%d + %d = %dn", num1, num2, num3)

    }

    Output: 

    5 + 10 = 15

    Example 3:

    Go

    package main

    import (

        "fmt"

    )

    func main(){

        var str = "Geeksforgeeks"

          fmt.Printf("The string is %s n", str)

        var num1 int = 21

          fmt.Printf("The decimal value is %d n", num1)

        var num2 float32 = 7.786

          fmt.Printf("The floating point is %g n", num2)

        var num3 int = 14

          fmt.Printf("The binary value of num3 is %b n", num3)

        var num4 = 4 + 1i

        fmt.Printf("Scientific Notation of num4 : %e n", num4)

    }

    Output:

    The string is Geeksforgeeks  
    The decimal value is 21  
    The floating point is 7.786  
    The binary value of num3 is 1110  
    Scientific Notation of num4 : (4.000000e+00+1.000000e+00i)

    Привет, уважаемые читатели Хабрахабра. В то время, как обсуждается возможный новый дизайн обработки ошибок и ведутся споры о преимуществах явной обработки ошибок, предлагаю рассмотреть некоторые особенности ошибок, паник и их восстановления в Go, которые будут полезны на практике.
    image

    error

    error это интерфейс. И как большинство интерфейсов в Go, определение error краткое и простое:

    type error interface {
        Error() string
    }

    Получается любой тип у которого есть метод Error может быть использован как ошибка. Как учил Роб Пайк Ошибки это значения, а значениями можно оперировать и программировать различную логику.

    В стандартной библиотеки Go имеются две функции, которые удобно использовать для создания ошибок. Функция errors.New хорошо подходит для создания простых ошибок. Функция fmt.Errorf позволяет использовать стандартное форматирования.

    err := errors.New("emit macho dwarf: elf header corrupted")
    
    const name, id = "bimmler", 17
    err := fmt.Errorf("user %q (id %d) not found", name, id)

    Обычно для работы с ошибками достаточно типа error. Но иногда может потребоваться передавать с ошибкой дополнительную информацию, в таких случаях можно добавить свой тип ошибок.
    Неплохой пример это тип PathError из пакета os

    // PathError records an error and the operation and file path that caused it.
    type PathError struct {
        Op   string
        Path string
        Err  error
    }
    
    func (e *PathError) Error() string { return e.Op + " " + e.Path + ": " + e.Err.Error() }

    Значение такой ошибки будет содержать операцию, путь и ошибку.

    Инициализируются они таким образом:

    ...
    return nil, &PathError{"open", name, syscall.ENOENT}
    ...
    return nil, &PathError{"close", file.name, e}

    Обработка может иметь стандартный вид:

    _, err := os.Open("---")
    if err != nil{
        fmt.Println(err)
    }
    // open ---: The system cannot find the file specified.

    А вот если есть необходимость получить дополнительную информацию, то можно распаковать error в *os.PathError:

    _, err := os.Open("---")
    if pe, ok := err.(*os.PathError);ok{
        fmt.Printf("Err: %sn", pe.Err)
        fmt.Printf("Op: %sn", pe.Op)
        fmt.Printf("Path: %sn", pe.Path)
    }
    // Err: The system cannot find the file specified.
    // Op: open
    // Path: ---

    Этот же подход можно применять если функция может вернуть несколько различных типов ошибок.
    play

    Объявление нескольких типов ошибок, каждая имеет свои данные:

    code

    type ErrTimeout struct {
        Time time.Duration
        Err  error
    }
    func (e *ErrTimeout) Error() string { return e.Time.String() + ": " + e.Err.Error() }
    
    type ErrPermission struct {
        Status string
        Err  error
    }
    func (e *ErrPermission) Error() string { return e.Status + ": " + e.Err.Error() }

    Функция которая может вернуть эти ошибки:

    code

    func proc(n int) error {
        if n <= 10 {
            return &ErrTimeout{Time: time.Second * 10, Err: errors.New("timeout error")}
        } else if n >= 10 {
            return &ErrPermission{Status: "access_denied", Err: errors.New("permission denied")}
        }
        return nil
    }

    Обработка ошибок через приведения типов:

    code

    func main(){
        err := proc(11)
        if err != nil {
            switch e := err.(type) {
            case *ErrTimeout:
                fmt.Printf("Timeout: %sn", e.Time.String())
                fmt.Printf("Error: %sn", e.Err)
            case *ErrPermission:
                fmt.Printf("Status: %sn", e.Status)
                fmt.Printf("Error: %sn", e.Err)
            default:
                fmt.Println("hm?")
                os.Exit(1)
            }
        }
    }

    В случае когда ошибкам не нужны специальные свойства, в Go хорошей практикой считается создавать переменные для хранения ошибок на уровне пакетов. Примером может служить такие ошибки как io.EOF, io.ErrNoProgress и проч.

    В примере ниже, прерываем чтение и продолжаем работу приложения, когда ошибка равна io.EOF или закрываем приложения при любых других ошибках.

    func main(){
        reader := strings.NewReader("hello world")
        p := make([]byte, 2)
    
        for {
            _, err := reader.Read(p)
            if err != nil{
                if err == io.EOF {
                    break
                }
                log.Fatal(err)
            }
        }
    }

    Это эффективно, поскольку ошибки создаются только один раз и используются многократно.

    stack trace

    Список функций, вызванных в момент захвата стека. Трассировка стека помогает получить более полное представление о происходящем в системе. Сохранение трассировки в логах может серьезно помочь при отладки.

    Наличие этой информации в ошибке у Go часто не хватает, но к счастью получить дампа стека в Go не сложно.

    Для вывода трассировки в стандартный выводов можно воспользоваться debug.PrintStack():

    func main(){
        foo()
    }
    
    func foo(){
        bar()
    }
    func bar(){
        debug.PrintStack()
    }

    Как результат в Stderr будет записано такая информация:

    stack

    goroutine 1 [running]:
    runtime/debug.Stack(0x1, 0x7, 0xc04207ff78)
            .../Go/src/runtime/debug/stack.go:24 +0xae
    runtime/debug.PrintStack()
            .../Go/src/runtime/debug/stack.go:16 +0x29
    main.bar()
            .../main.go:13 +0x27
    main.foo()
            .../main.go:10 +0x27
    main.main()
            .../main.go:6 +0x27
    

    debug.Stack() возвращает слайс байт с дампом стека, который можно в дальнейшем вывести в журнал или в другом месте.

    b := debug.Stack()
    fmt.Printf("Trace:n %sn", b)

    Есть еще один момент, если мы сделаем вот так:

    go bar()

    то на выходе получим такую информацию:

    main.bar()
            .../main.go:19 +0x2d
    created by main.foo
            .../main.go:14 +0x3c

    У каждой горутины отдельный стек, соответственно, мы получаем только его дамп. Кстати, о своих стеках у горутин, с этим еще связана работа recover, но об этом чуть позже.
    И так, что бы увидеть информацию по всем горутинам, можно воспользоваться runtime.Stack() и передать вторым аргументом true.

    func bar(){
        buf := make([]byte, 1024)
        for {
            n := runtime.Stack(buf, true)
            if n < len(buf) {
                break
            }
            buf = make([]byte, 2*len(buf))
        }
        fmt.Printf("Trace:n %sn", buf)
    }

    stack

    Trace:
     goroutine 5 [running]:
    main.bar()
            .../main.go:21 +0xbc
    created by main.foo
            .../main.go:14 +0x3c
    
    goroutine 1 [sleep]:
    time.Sleep(0x77359400)
            .../Go/src/runtime/time.go:102 +0x17b
    main.foo()
            .../main.go:16 +0x49
    main.main()
            .../main.go:10 +0x27
    

    Добавим в ошибку эту информацию и тем самым сильно повысим ее информативность.
    Например так:

    type ErrStack struct {
        StackTrace []byte
        Err  error
    }
    func (e *ErrStack) Error() string {
        var buf bytes.Buffer
        fmt.Fprintf(&buf, "Error:n %sn", e.Err)
        fmt.Fprintf(&buf, "Trace:n %sn", e.StackTrace)
        return buf.String()
    }

    Можно добавить функцию для создания этой ошибки:

    func NewErrStack(msg string) *ErrStack {
        buf := make([]byte, 1024)
        for {
            n := runtime.Stack(buf, true)
            if n < len(buf) {
                break
            }
            buf = make([]byte, 2*len(buf))
        }
        return &ErrStack{StackTrace: buf, Err: errors.New(msg)}
    }

    Дальше с этим уже можно работать:

    func main() {
        err := foo()
        if err != nil {
            fmt.Println(err)
        }
    }
    
    func foo() error{
        return bar()
    }
    func bar() error{
        err := NewErrStack("error")
        return err
    }

    stack

    Error:
     error
    Trace:
     goroutine 1 [running]:
    main.NewErrStack(0x4c021f, 0x5, 0x4a92e0)
            .../main.go:41 +0xae
    main.bar(0xc04207ff38, 0xc04207ff78)
            .../main.go:24 +0x3d
    main.foo(0x0, 0x48ebff)
            .../main.go:21 +0x29
    main.main()
            .../main.go:11 +0x29
    

    Соответственно ошибку и трейс можно рзаделить:

    func main(){
        err := foo()
    
        if st, ok := err.(*ErrStack);ok{
            fmt.Printf("Error:n %sn", st.Err)
            fmt.Printf("Trace:n %sn", st.StackTrace)
        }
    }

    И конечно уже есть готовые решение. Одно из них, это пакет https://github.com/pkg/errors. Он позволяет создавать новую ошибку, которая уже будет содержать стек трейс, а можно добавлять трейс и/или дополнительное сообщения к уже существующей ошибке. Плюс удобное форматирование вывода.

    import (
        "fmt"
        "github.com/pkg/errors"
    )
    
    func main(){
        err := foo()
        if err != nil {
            fmt.Printf("%+v", err)
        }
    }
    
    func foo() error{
        err := bar()
        return errors.Wrap(err, "error2")
    }
    func bar() error{
        return errors.New("error")
    }

    stack

    error
    main.bar
            .../main.go:20
    main.foo
            .../main.go:16
    main.main
            .../main.go:9
    runtime.main
            .../Go/src/runtime/proc.go:198
    runtime.goexit
            .../Go/src/runtime/asm_amd64.s:2361
    error2
    main.foo
            .../main.go:17
    main.main
            .../main.go:9
    runtime.main
            .../Go/src/runtime/proc.go:198
    runtime.goexit
            .../Go/src/runtime/asm_amd64.s:2361

    %v выведет только сообщения

    error2: error

    panic/recover

    Паника(aka авария, aka panic), как правило, сигнализирует о наличии неполадок, из-за которых система (или конкретная подсистема) не может продолжать функционировать. В случае вызова panic среда выполнения Go просматривает стек, пытаясь найти для нее обработчик.

    Необработанные паники прекращают работу приложения. Это принципиально отличает их от ошибок, которые позволяют не обрабатывать себя.

    В вызов функции panic можно передать любой аргумент.

    panic(v interface{})

    Удобно в panic передать ошибку, того типа который упростит восстановления и поможет отладки.

    panic(errors.New("error"))

    Восстановление после аварии в Go основывается на отложенном вызове функций, он же defer. Такая функция гарантировано будет выполнена в момент возврата из родительской функции. Не зависимо от причины — оператор return, конец функции или паника.

    А вот уже функция recover дает возможность получить информацию об аварии и остановить раскручивание стека вызовов.
    Типичный пример вызова panic и обработчик:

    func main(){
        defer func() {
            if err := recover(); err != nil{
                fmt.Printf("panic: %s", err)
            }
        }()
        foo()
    }
    
    func foo(){
        panic(errors.New("error"))
    }

    recover возвращает interface{} (тот самый который передаем в panic) или nil, если не было вызова panic.

    Рассмотрим еще один пример обработки аварийных ситуаций. У нас есть некоторая функция в которую мы передаем например ресурс и которая в теории может вызвать панику.

    func bar(f *os.File) {
        panic(errors.New("error"))
    }

    Во-первых, может понадобится всегда выполнять какие то действия при завершении, например очистка ресурсов, в нашем случае это закрытия файла.

    Во-вторых, некорректное выполнение такой функции не должно приводить к завершению всей программы.

    Такую задачу можно решить с помощью defer, recover и замыкания:

    func foo()(err error) {
        file, _ := os.Open("file")
        defer func() {
            if r := recover(); r != nil {
                err = r.(error) // обрабатываем аварийную ситуацию, распаковываем если знаем, что в панике ошибка
                // err := errors.New("trapped panic: %s (%T)", r, r) // или создаем свою ошибку
            }
            file.Close() // закрываем файл
        }()
    
        bar(file)
    
        return err
    }

    Замыкание позволяем обратится к выше объявленным переменным, благодаря этому гарантировано закрываем файл и в случае аварии, извлечь из нее ошибку и передать ее обычному механизму обработки ошибок.

    Бывают обратные ситуации, когда функция c определенными аргументами всегда должна отрабатывать корректно и если этого не происходит, то что пошло совсем плохо.

    В подобных случаях добавляют функцию обертку в которой вызывается целевая функция и в случае ошибки вызывается panic.

    В Go обычно такие функции с префиксом Must:

    // MustCompile is like Compile but panics if the expression cannot be parsed.
    // It simplifies safe initialization of global variables holding compiled regular
    // expressions.
    func MustCompile(str string) *Regexp {
        regexp, error := Compile(str)
        if error != nil {
            panic(`regexp: Compile(` + quote(str) + `): ` + error.Error())
        }
        return regexp
    }

    // Must is a helper that wraps a call to a function returning (*Template, error)
    // and panics if the error is non-nil. It is intended for use in variable initializations
    // such as
    //  var t = template.Must(template.New("name").Parse("html"))
    func Must(t *Template, err error) *Template {
        if err != nil {
            panic(err)
        }
        return t
    }

    Стоит помнить еще про один момент, связанный с panic и горутинами.

    Часть тезисов из того что обсудили выше:

    • Для каждой горутины выделяется отдельный стек.
    • При вызове panic, в стеке ищется recover.
    • В случае, когда recover не найдет, завершается все приложение.

    Обработчик в main не перехватит панику из foo и программа аварийно завершится:

    func main(){
        defer func() {
            if err := recover(); err != nil{
                fmt.Printf("panic: %s", err)
            }
        }()
    
        go foo()
    
        time.Sleep(time.Minute)
    }
    func foo(){
        panic(errors.New("error"))
    }

    Это будет проблемой, если например вызываются обработчик для соединения на сервере. В случае паники в любом из обработчиков, весь сервер завершит выполнение. А контролировать обработку аварий в этих функциях, по какой то причине, вы не можете.
    В простом случае решение может выглядит примерно так:

    type f func()
    
    func Def(fn f) {
        go func() {
            defer func() {
                if err := recover(); err != nil {
                    log.Println("panic")
                }
            }()
    
            fn()
        }()
    }
    
    func main() {
        Def(foo)
    
        time.Sleep(time.Minute)
    }
    
    func foo() {
        panic(errors.New("error"))
    }

    handle/check

    Возможно в будущем нас ждут изменения в обработки ошибок. Ознакомится с ними можно по ссылкам:
    go2draft
    Обработка ошибок в Go 2

    На сегодня все. Спасибо!

    С пакетом fmt в Go вы можете форматировать числа и строки, дополненные пробелами или нулями, в разных основах и с дополнительными кавычками.

    Вы отправляете строку шаблона, которая содержит текст, который вы хотите отформатировать, плюс несколько глаголов аннотации, которые сообщают функциям fmt, как форматировать конечные аргументы.

    Printf

    В этом примере fmt.Printf форматирует и записывает в стандартный вывод:

    fmt.Printf("Binary: %b\%b", 4, 5) 
    // Печатает `Binary: 100101`
    
    • строка шаблона имеет вид «Binary: %b\%b»
    • глагол аннотации %b форматирует число в двоичном формате
    • специальное значение \ является обратной косой чертой.

    В особом случае глагол %%, который не использует аргументов, производит знак процента:

    fmt.Printf("%d %%", 50) 
    // Печатает `50 %`
    

    Sprintf (форматирование без печати)

    Используйте fmt.Sprintf для форматирования строки без ее печати:

    s := fmt.Sprintf("Binary: %b\%b", 4, 5) 
    // s == `Binary: 100101`
    

    Нахождение ошибок fmt с помощью vet

    Если вы попытаетесь скомпилировать и запустить эту некорректную строку кода

    fmt.Printf("Binary: %b\%b", 4) 
    // Отсуствует аргумент для Printf
    

    вы обнаружите, что программа скомпилируется, а затем напечатает

    Binary: 100%!b(MISSING)
    

    Для раннего обнаружения ошибок такого типа вы можете использовать команду vet — она ​​может найти вызовы, аргументы которых не совпадают со строкой формата.

    $ go vet example.go
    example.go:8: missing argument for Printf("%b"): format reads arg 2, have only 1 args
    

    Варианты использования fmt.Printf

    Стандартные форматы и тип

    Значение: []int64{0, 1}

    Формат Глагол Описание
    [0 1] %v Формат по умолчанию
    []int64{0, 1} %#v Формат синтаксиса Go
    []int64 %T Тип значения

    Целое число (отступ, основание, знак)

    Значение: 15

    Формат
    Глагол
    Описание
    15 %d Основание 10
    +15 %+d Всегда показывать знак
    ␣␣15
    %4d Отступ с пробелами (ширина 4, выравнивание по правому краю)
    15␣␣
    %-4d Отступ с пробелами (ширина 4, выравнивание по левому краю)
    0015 %04d Отступ с нулями (ширина 4)
    1111 %b Основание 2
    17 %o Основание 8
    f %x Основание 16, нижний регистр
    F %X Основание 16, верхний регистр
    0xf %#x Основание 16, с ведущим 0x

    Символ (цитата, Unicode)

    Значение: 65 (Unicode буква A)

    Формат Глагол Описание
    A %c Символ
    ‘A’ %q Цитируемый символ
    U+0041 %U Unicode
    U+0041 ‘A’ %#U Unicode с символом

    Логическое (true/false)

    Используйте %t, чтобы отформатировать логическое значение как true или false.

    Указатель (шестнадцатеричный)

    Используйте %p для форматирования указателя с основанием 16 с начальным 0x.

    Float (отступ, точность, научная запись)

    Значение: 123.456

    Формат Глагол Описание
    1.234560e+02
    %e Научная запись
    123.456000 %f Десятичная точка, без экспоненты
    123.46 %.2f Ширина по умолчанию, точность 2
    ␣␣123.46
    %8.2f
    Ширина 8, точность 2
    123.456 %g Экспонент по мере необходимости, только необходимые цифры

    Срез строк или байтов (кавычка, отступ, шестнадцатеричный)

    Значение: «café»

    Формат Глагол Описание
    café %s Обычная строка
    ␣␣café %6s Ширина 6, выравнивание по правому краю
    café␣␣ %-6s Ширина 6, выравнивание по левому краю
    «café» %q Цитируемая строка
    636166c3a9 %x шестнадцатеричный дамп байтовых значений
    63 61 66 c3 a9 % x шестнадцатеричный дамп с пробелами

    Специальные значения

    Значение Описание
    a U+0007 оповещение или звонок
    b U+0008 backspace
    \ U+005c обратный слэш
    t U+0009 горизонтальный таб
    n U+000A перевод строки (line feed) или новая строка (newline)
    f U+000C form feed
    r U+000D возврат каретки
    v U+000b вертикальный таб

    Произвольные значения могут быть закодированы с помощью обратной косой черты и могут использоваться в любом «» строковом литерале.

    Существует четыре разных формата:

    • x, за которыми следуют ровно две шестнадцатеричные цифры
    • за которыми следуют ровно три восьмеричные цифры
    • u за которыми следуют ровно четыре шестнадцатеричные цифры
    • U за которыми следуют ровно восемь шестнадцатеричных цифр

    Экранирование u и U представляет кодовые точки Unicode.

    fmt.Println("\cafu00e9") // Печатает café
    

    Читайте также:

    • Строка, байт, руна, символ в Golang
    • Обзор обработки строк в Golang
    • Руны и кодировка символов в Golang

    Introduction

    Go is a new language. Although it borrows ideas from
    existing languages,
    it has unusual properties that make effective Go programs
    different in character from programs written in its relatives.
    A straightforward translation of a C++ or Java program into Go
    is unlikely to produce a satisfactory result—Java programs
    are written in Java, not Go.
    On the other hand, thinking about the problem from a Go
    perspective could produce a successful but quite different
    program.
    In other words,
    to write Go well, it’s important to understand its properties
    and idioms.
    It’s also important to know the established conventions for
    programming in Go, such as naming, formatting, program
    construction, and so on, so that programs you write
    will be easy for other Go programmers to understand.

    This document gives tips for writing clear, idiomatic Go code.
    It augments the language specification,
    the Tour of Go,
    and How to Write Go Code,
    all of which you
    should read first.

    Note added January, 2022:
    This document was written for Go’s
    release in 2009, and has not been updated significantly since.
    Although it is a good guide to understand how to use the language
    itself, thanks to the stability of the language, it says little
    about the libraries and nothing about significant changes to the
    Go ecosystem since it was written, such as the build system, testing,
    modules, and polymorphism.
    There are no plans to update it, as so much has happened and a large
    and growing set of documents, blogs, and books do a fine job of
    describing modern Go usage.
    Effective Go continues to be useful, but the reader should
    understand it is far from a complete guide.
    See issue
    28782 for context.

    Examples

    The Go package sources
    are intended to serve not
    only as the core library but also as examples of how to
    use the language.
    Moreover, many of the packages contain working, self-contained
    executable examples you can run directly from the
    golang.org web site, such as
    this one (if
    necessary, click on the word «Example» to open it up).
    If you have a question about how to approach a problem or how something
    might be implemented, the documentation, code and examples in the
    library can provide answers, ideas and
    background.

    Formatting

    Formatting issues are the most contentious
    but the least consequential.
    People can adapt to different formatting styles
    but it’s better if they don’t have to, and
    less time is devoted to the topic
    if everyone adheres to the same style.
    The problem is how to approach this Utopia without a long
    prescriptive style guide.

    With Go we take an unusual
    approach and let the machine
    take care of most formatting issues.
    The gofmt program
    (also available as go fmt, which
    operates at the package level rather than source file level)
    reads a Go program
    and emits the source in a standard style of indentation
    and vertical alignment, retaining and if necessary
    reformatting comments.
    If you want to know how to handle some new layout
    situation, run gofmt; if the answer doesn’t
    seem right, rearrange your program (or file a bug about gofmt),
    don’t work around it.

    As an example, there’s no need to spend time lining up
    the comments on the fields of a structure.
    Gofmt will do that for you. Given the
    declaration

    type T struct {
        name string // name of the object
        value int // its value
    }
    

    gofmt will line up the columns:

    type T struct {
        name    string // name of the object
        value   int    // its value
    }
    

    All Go code in the standard packages has been formatted with gofmt.

    Some formatting details remain. Very briefly:

    Indentation
    We use tabs for indentation and gofmt emits them by default.
    Use spaces only if you must.
    Line length
    Go has no line length limit. Don’t worry about overflowing a punched card.
    If a line feels too long, wrap it and indent with an extra tab.
    Parentheses
    Go needs fewer parentheses than C and Java: control structures (if,
    for, switch) do not have parentheses in
    their syntax.
    Also, the operator precedence hierarchy is shorter and clearer, so

    x<<8 + y<<16
    

    means what the spacing implies, unlike in the other languages.

    Go provides C-style /* */ block comments
    and C++-style // line comments.
    Line comments are the norm;
    block comments appear mostly as package comments, but
    are useful within an expression or to disable large swaths of code.

    Comments that appear before top-level declarations, with no intervening newlines,
    are considered to document the declaration itself.
    These “doc comments” are the primary documentation for a given Go package or command.
    For more about doc comments, see “Go Doc Comments”.

    Names

    Names are as important in Go as in any other language.
    They even have semantic effect:
    the visibility of a name outside a package is determined by whether its
    first character is upper case.
    It’s therefore worth spending a little time talking about naming conventions
    in Go programs.

    Package names

    When a package is imported, the package name becomes an accessor for the
    contents. After

    import "bytes"
    

    the importing package can talk about bytes.Buffer. It’s
    helpful if everyone using the package can use the same name to refer to
    its contents, which implies that the package name should be good:
    short, concise, evocative. By convention, packages are given
    lower case, single-word names; there should be no need for underscores
    or mixedCaps.
    Err on the side of brevity, since everyone using your
    package will be typing that name.
    And don’t worry about collisions a priori.
    The package name is only the default name for imports; it need not be unique
    across all source code, and in the rare case of a collision the
    importing package can choose a different name to use locally.
    In any case, confusion is rare because the file name in the import
    determines just which package is being used.

    Another convention is that the package name is the base name of
    its source directory;
    the package in src/encoding/base64
    is imported as "encoding/base64" but has name base64,
    not encoding_base64 and not encodingBase64.

    The importer of a package will use the name to refer to its contents,
    so exported names in the package can use that fact
    to avoid repetition.
    (Don’t use the import . notation, which can simplify
    tests that must run outside the package they are testing, but should otherwise be avoided.)
    For instance, the buffered reader type in the bufio package is called Reader,
    not BufReader, because users see it as bufio.Reader,
    which is a clear, concise name.
    Moreover,
    because imported entities are always addressed with their package name, bufio.Reader
    does not conflict with io.Reader.
    Similarly, the function to make new instances of ring.Ring—which
    is the definition of a constructor in Go—would
    normally be called NewRing, but since
    Ring is the only type exported by the package, and since the
    package is called ring, it’s called just New,
    which clients of the package see as ring.New.
    Use the package structure to help you choose good names.

    Another short example is once.Do;
    once.Do(setup) reads well and would not be improved by
    writing once.DoOrWaitUntilDone(setup).
    Long names don’t automatically make things more readable.
    A helpful doc comment can often be more valuable than an extra long name.

    Getters

    Go doesn’t provide automatic support for getters and setters.
    There’s nothing wrong with providing getters and setters yourself,
    and it’s often appropriate to do so, but it’s neither idiomatic nor necessary
    to put Get into the getter’s name. If you have a field called
    owner (lower case, unexported), the getter method should be
    called Owner (upper case, exported), not GetOwner.
    The use of upper-case names for export provides the hook to discriminate
    the field from the method.
    A setter function, if needed, will likely be called SetOwner.
    Both names read well in practice:

    owner := obj.Owner()
    if owner != user {
        obj.SetOwner(user)
    }
    

    Interface names

    By convention, one-method interfaces are named by
    the method name plus an -er suffix or similar modification
    to construct an agent noun: Reader,
    Writer, Formatter,
    CloseNotifier etc.

    There are a number of such names and it’s productive to honor them and the function
    names they capture.
    Read, Write, Close, Flush,
    String and so on have
    canonical signatures and meanings. To avoid confusion,
    don’t give your method one of those names unless it
    has the same signature and meaning.
    Conversely, if your type implements a method with the
    same meaning as a method on a well-known type,
    give it the same name and signature;
    call your string-converter method String not ToString.

    MixedCaps

    Finally, the convention in Go is to use MixedCaps
    or mixedCaps rather than underscores to write
    multiword names.

    Semicolons

    Like C, Go’s formal grammar uses semicolons to terminate statements,
    but unlike in C, those semicolons do not appear in the source.
    Instead the lexer uses a simple rule to insert semicolons automatically
    as it scans, so the input text is mostly free of them.

    The rule is this. If the last token before a newline is an identifier
    (which includes words like int and float64),
    a basic literal such as a number or string constant, or one of the
    tokens

    break continue fallthrough return ++ -- ) }
    

    the lexer always inserts a semicolon after the token.
    This could be summarized as, “if the newline comes
    after a token that could end a statement, insert a semicolon”.

    A semicolon can also be omitted immediately before a closing brace,
    so a statement such as

        go func() { for { dst <- <-src } }()
    

    needs no semicolons.
    Idiomatic Go programs have semicolons only in places such as
    for loop clauses, to separate the initializer, condition, and
    continuation elements. They are also necessary to separate multiple
    statements on a line, should you write code that way.

    One consequence of the semicolon insertion rules
    is that you cannot put the opening brace of a
    control structure (if, for, switch,
    or select) on the next line. If you do, a semicolon
    will be inserted before the brace, which could cause unwanted
    effects. Write them like this

    if i < f() {
        g()
    }
    

    not like this

    if i < f()  // wrong!
    {           // wrong!
        g()
    }
    

    Control structures

    The control structures of Go are related to those of C but differ
    in important ways.
    There is no do or while loop, only a
    slightly generalized
    for;
    switch is more flexible;
    if and switch accept an optional
    initialization statement like that of for;
    break and continue statements
    take an optional label to identify what to break or continue;
    and there are new control structures including a type switch and a
    multiway communications multiplexer, select.
    The syntax is also slightly different:
    there are no parentheses
    and the bodies must always be brace-delimited.

    If

    In Go a simple if looks like this:

    if x > 0 {
        return y
    }
    

    Mandatory braces encourage writing simple if statements
    on multiple lines. It’s good style to do so anyway,
    especially when the body contains a control statement such as a
    return or break.

    Since if and switch accept an initialization
    statement, it’s common to see one used to set up a local variable.

    if err := file.Chmod(0664); err != nil {
        log.Print(err)
        return err
    }
    

    In the Go libraries, you’ll find that
    when an if statement doesn’t flow into the next statement—that is,
    the body ends in break, continue,
    goto, or return—the unnecessary
    else is omitted.

    f, err := os.Open(name)
    if err != nil {
        return err
    }
    codeUsing(f)
    

    This is an example of a common situation where code must guard against a
    sequence of error conditions. The code reads well if the
    successful flow of control runs down the page, eliminating error cases
    as they arise. Since error cases tend to end in return
    statements, the resulting code needs no else statements.

    f, err := os.Open(name)
    if err != nil {
        return err
    }
    d, err := f.Stat()
    if err != nil {
        f.Close()
        return err
    }
    codeUsing(f, d)
    

    Redeclaration and reassignment

    An aside: The last example in the previous section demonstrates a detail of how the
    := short declaration form works.
    The declaration that calls os.Open reads,

    f, err := os.Open(name)
    

    This statement declares two variables, f and err.
    A few lines later, the call to f.Stat reads,

    d, err := f.Stat()
    

    which looks as if it declares d and err.
    Notice, though, that err appears in both statements.
    This duplication is legal: err is declared by the first statement,
    but only re-assigned in the second.
    This means that the call to f.Stat uses the existing
    err variable declared above, and just gives it a new value.

    In a := declaration a variable v may appear even
    if it has already been declared, provided:

    • this declaration is in the same scope as the existing declaration of v
      (if v is already declared in an outer scope, the declaration will create a new variable §),
    • the corresponding value in the initialization is assignable to v, and
    • there is at least one other variable that is created by the declaration.

    This unusual property is pure pragmatism,
    making it easy to use a single err value, for example,
    in a long if-else chain.
    You’ll see it used often.

    § It’s worth noting here that in Go the scope of function parameters and return values
    is the same as the function body, even though they appear lexically outside the braces
    that enclose the body.

    For

    The Go for loop is similar to—but not the same as—C’s.
    It unifies for
    and while and there is no do-while.
    There are three forms, only one of which has semicolons.

    // Like a C for
    for init; condition; post { }
    
    // Like a C while
    for condition { }
    
    // Like a C for(;;)
    for { }
    

    Short declarations make it easy to declare the index variable right in the loop.

    sum := 0
    for i := 0; i < 10; i++ {
        sum += i
    }
    

    If you’re looping over an array, slice, string, or map,
    or reading from a channel, a range clause can
    manage the loop.

    for key, value := range oldMap {
        newMap[key] = value
    }
    

    If you only need the first item in the range (the key or index), drop the second:

    for key := range m {
        if key.expired() {
            delete(m, key)
        }
    }
    

    If you only need the second item in the range (the value), use the blank identifier, an underscore, to discard the first:

    sum := 0
    for _, value := range array {
        sum += value
    }
    

    The blank identifier has many uses, as described in a later section.

    For strings, the range does more work for you, breaking out individual
    Unicode code points by parsing the UTF-8.
    Erroneous encodings consume one byte and produce the
    replacement rune U+FFFD.
    (The name (with associated builtin type) rune is Go terminology for a
    single Unicode code point.
    See the language specification
    for details.)
    The loop

    for pos, char := range "日本x80語" { // x80 is an illegal UTF-8 encoding
        fmt.Printf("character %#U starts at byte position %dn", char, pos)
    }
    

    prints

    character U+65E5 '日' starts at byte position 0
    character U+672C '本' starts at byte position 3
    character U+FFFD '�' starts at byte position 6
    character U+8A9E '語' starts at byte position 7
    

    Finally, Go has no comma operator and ++ and --
    are statements not expressions.
    Thus if you want to run multiple variables in a for
    you should use parallel assignment (although that precludes ++ and --).

    // Reverse a
    for i, j := 0, len(a)-1; i < j; i, j = i+1, j-1 {
        a[i], a[j] = a[j], a[i]
    }
    

    Switch

    Go’s switch is more general than C’s.
    The expressions need not be constants or even integers,
    the cases are evaluated top to bottom until a match is found,
    and if the switch has no expression it switches on
    true.
    It’s therefore possible—and idiomatic—to write an
    ifelseifelse
    chain as a switch.

    func unhex(c byte) byte {
        switch {
        case '0' <= c && c <= '9':
            return c - '0'
        case 'a' <= c && c <= 'f':
            return c - 'a' + 10
        case 'A' <= c && c <= 'F':
            return c - 'A' + 10
        }
        return 0
    }
    

    There is no automatic fall through, but cases can be presented
    in comma-separated lists.

    func shouldEscape(c byte) bool {
        switch c {
        case ' ', '?', '&', '=', '#', '+', '%':
            return true
        }
        return false
    }
    

    Although they are not nearly as common in Go as some other C-like
    languages, break statements can be used to terminate
    a switch early.
    Sometimes, though, it’s necessary to break out of a surrounding loop,
    not the switch, and in Go that can be accomplished by putting a label
    on the loop and «breaking» to that label.
    This example shows both uses.

    Loop:
        for n := 0; n < len(src); n += size {
            switch {
            case src[n] < sizeOne:
                if validateOnly {
                    break
                }
                size = 1
                update(src[n])
    
            case src[n] < sizeTwo:
                if n+1 >= len(src) {
                    err = errShortInput
                    break Loop
                }
                if validateOnly {
                    break
                }
                size = 2
                update(src[n] + src[n+1]<<shift)
            }
        }
    

    Of course, the continue statement also accepts an optional label
    but it applies only to loops.

    To close this section, here’s a comparison routine for byte slices that uses two
    switch statements:

    // Compare returns an integer comparing the two byte slices,
    // lexicographically.
    // The result will be 0 if a == b, -1 if a < b, and +1 if a > b
    func Compare(a, b []byte) int {
        for i := 0; i < len(a) && i < len(b); i++ {
            switch {
            case a[i] > b[i]:
                return 1
            case a[i] < b[i]:
                return -1
            }
        }
        switch {
        case len(a) > len(b):
            return 1
        case len(a) < len(b):
            return -1
        }
        return 0
    }
    

    Type switch

    A switch can also be used to discover the dynamic type of an interface
    variable. Such a type switch uses the syntax of a type
    assertion with the keyword type inside the parentheses.
    If the switch declares a variable in the expression, the variable will
    have the corresponding type in each clause.
    It’s also idiomatic to reuse the name in such cases, in effect declaring
    a new variable with the same name but a different type in each case.

    var t interface{}
    t = functionOfSomeType()
    switch t := t.(type) {
    default:
        fmt.Printf("unexpected type %Tn", t)     // %T prints whatever type t has
    case bool:
        fmt.Printf("boolean %tn", t)             // t has type bool
    case int:
        fmt.Printf("integer %dn", t)             // t has type int
    case *bool:
        fmt.Printf("pointer to boolean %tn", *t) // t has type *bool
    case *int:
        fmt.Printf("pointer to integer %dn", *t) // t has type *int
    }
    

    Functions

    Multiple return values

    One of Go’s unusual features is that functions and methods
    can return multiple values. This form can be used to
    improve on a couple of clumsy idioms in C programs: in-band
    error returns such as -1 for EOF
    and modifying an argument passed by address.

    In C, a write error is signaled by a negative count with the
    error code secreted away in a volatile location.
    In Go, Write
    can return a count and an error: “Yes, you wrote some
    bytes but not all of them because you filled the device”.
    The signature of the Write method on files from
    package os is:

    func (file *File) Write(b []byte) (n int, err error)
    

    and as the documentation says, it returns the number of bytes
    written and a non-nil error when n
    != len(b).
    This is a common style; see the section on error handling for more examples.

    A similar approach obviates the need to pass a pointer to a return
    value to simulate a reference parameter.
    Here’s a simple-minded function to
    grab a number from a position in a byte slice, returning the number
    and the next position.

    func nextInt(b []byte, i int) (int, int) {
        for ; i < len(b) && !isDigit(b[i]); i++ {
        }
        x := 0
        for ; i < len(b) && isDigit(b[i]); i++ {
            x = x*10 + int(b[i]) - '0'
        }
        return x, i
    }
    

    You could use it to scan the numbers in an input slice b like this:

        for i := 0; i < len(b); {
            x, i = nextInt(b, i)
            fmt.Println(x)
        }
    

    Named result parameters

    The return or result «parameters» of a Go function can be given names and
    used as regular variables, just like the incoming parameters.
    When named, they are initialized to the zero values for their types when
    the function begins; if the function executes a return statement
    with no arguments, the current values of the result parameters are
    used as the returned values.

    The names are not mandatory but they can make code shorter and clearer:
    they’re documentation.
    If we name the results of nextInt it becomes
    obvious which returned int
    is which.

    func nextInt(b []byte, pos int) (value, nextPos int) {
    

    Because named results are initialized and tied to an unadorned return, they can simplify
    as well as clarify. Here’s a version
    of io.ReadFull that uses them well:

    func ReadFull(r Reader, buf []byte) (n int, err error) {
        for len(buf) > 0 && err == nil {
            var nr int
            nr, err = r.Read(buf)
            n += nr
            buf = buf[nr:]
        }
        return
    }
    

    Defer

    Go’s defer statement schedules a function call (the
    deferred function) to be run immediately before the function
    executing the defer returns. It’s an unusual but
    effective way to deal with situations such as resources that must be
    released regardless of which path a function takes to return. The
    canonical examples are unlocking a mutex or closing a file.

    // Contents returns the file's contents as a string.
    func Contents(filename string) (string, error) {
        f, err := os.Open(filename)
        if err != nil {
            return "", err
        }
        defer f.Close()  // f.Close will run when we're finished.
    
        var result []byte
        buf := make([]byte, 100)
        for {
            n, err := f.Read(buf[0:])
            result = append(result, buf[0:n]...) // append is discussed later.
            if err != nil {
                if err == io.EOF {
                    break
                }
                return "", err  // f will be closed if we return here.
            }
        }
        return string(result), nil // f will be closed if we return here.
    }
    

    Deferring a call to a function such as Close has two advantages. First, it
    guarantees that you will never forget to close the file, a mistake
    that’s easy to make if you later edit the function to add a new return
    path. Second, it means that the close sits near the open,
    which is much clearer than placing it at the end of the function.

    The arguments to the deferred function (which include the receiver if
    the function is a method) are evaluated when the defer
    executes, not when the call executes. Besides avoiding worries
    about variables changing values as the function executes, this means
    that a single deferred call site can defer multiple function
    executions. Here’s a silly example.

    for i := 0; i < 5; i++ {
        defer fmt.Printf("%d ", i)
    }
    

    Deferred functions are executed in LIFO order, so this code will cause
    4 3 2 1 0 to be printed when the function returns. A
    more plausible example is a simple way to trace function execution
    through the program. We could write a couple of simple tracing
    routines like this:

    func trace(s string)   { fmt.Println("entering:", s) }
    func untrace(s string) { fmt.Println("leaving:", s) }
    
    // Use them like this:
    func a() {
        trace("a")
        defer untrace("a")
        // do something....
    }
    

    We can do better by exploiting the fact that arguments to deferred
    functions are evaluated when the defer executes. The
    tracing routine can set up the argument to the untracing routine.
    This example:

    func trace(s string) string {
        fmt.Println("entering:", s)
        return s
    }
    
    func un(s string) {
        fmt.Println("leaving:", s)
    }
    
    func a() {
        defer un(trace("a"))
        fmt.Println("in a")
    }
    
    func b() {
        defer un(trace("b"))
        fmt.Println("in b")
        a()
    }
    
    func main() {
        b()
    }
    

    prints

    entering: b
    in b
    entering: a
    in a
    leaving: a
    leaving: b
    

    For programmers accustomed to block-level resource management from
    other languages, defer may seem peculiar, but its most
    interesting and powerful applications come precisely from the fact
    that it’s not block-based but function-based. In the section on
    panic and recover we’ll see another
    example of its possibilities.

    Data

    Allocation with new

    Go has two allocation primitives, the built-in functions
    new and make.
    They do different things and apply to different types, which can be confusing,
    but the rules are simple.
    Let’s talk about new first.
    It’s a built-in function that allocates memory, but unlike its namesakes
    in some other languages it does not initialize the memory,
    it only zeros it.
    That is,
    new(T) allocates zeroed storage for a new item of type
    T and returns its address, a value of type *T.
    In Go terminology, it returns a pointer to a newly allocated zero value of type
    T.

    Since the memory returned by new is zeroed, it’s helpful to arrange
    when designing your data structures that the
    zero value of each type can be used without further initialization. This means a user of
    the data structure can create one with new and get right to
    work.
    For example, the documentation for bytes.Buffer states that
    «the zero value for Buffer is an empty buffer ready to use.»
    Similarly, sync.Mutex does not
    have an explicit constructor or Init method.
    Instead, the zero value for a sync.Mutex
    is defined to be an unlocked mutex.

    The zero-value-is-useful property works transitively. Consider this type declaration.

    type SyncedBuffer struct {
        lock    sync.Mutex
        buffer  bytes.Buffer
    }
    

    Values of type SyncedBuffer are also ready to use immediately upon allocation
    or just declaration. In the next snippet, both p and v will work
    correctly without further arrangement.

    p := new(SyncedBuffer)  // type *SyncedBuffer
    var v SyncedBuffer      // type  SyncedBuffer
    

    Constructors and composite literals

    Sometimes the zero value isn’t good enough and an initializing
    constructor is necessary, as in this example derived from
    package os.

    func NewFile(fd int, name string) *File {
        if fd < 0 {
            return nil
        }
        f := new(File)
        f.fd = fd
        f.name = name
        f.dirinfo = nil
        f.nepipe = 0
        return f
    }
    

    There’s a lot of boiler plate in there. We can simplify it
    using a composite literal, which is
    an expression that creates a
    new instance each time it is evaluated.

    func NewFile(fd int, name string) *File {
        if fd < 0 {
            return nil
        }
        f := File{fd, name, nil, 0}
        return &f
    }
    

    Note that, unlike in C, it’s perfectly OK to return the address of a local variable;
    the storage associated with the variable survives after the function
    returns.
    In fact, taking the address of a composite literal
    allocates a fresh instance each time it is evaluated,
    so we can combine these last two lines.

        return &File{fd, name, nil, 0}
    

    The fields of a composite literal are laid out in order and must all be present.
    However, by labeling the elements explicitly as field:value
    pairs, the initializers can appear in any
    order, with the missing ones left as their respective zero values. Thus we could say

        return &File{fd: fd, name: name}
    

    As a limiting case, if a composite literal contains no fields at all, it creates
    a zero value for the type. The expressions new(File) and &File{} are equivalent.

    Composite literals can also be created for arrays, slices, and maps,
    with the field labels being indices or map keys as appropriate.
    In these examples, the initializations work regardless of the values of Enone,
    Eio, and Einval, as long as they are distinct.

    a := [...]string   {Enone: "no error", Eio: "Eio", Einval: "invalid argument"}
    s := []string      {Enone: "no error", Eio: "Eio", Einval: "invalid argument"}
    m := map[int]string{Enone: "no error", Eio: "Eio", Einval: "invalid argument"}
    

    Allocation with make

    Back to allocation.
    The built-in function make(T, args) serves
    a purpose different from new(T).
    It creates slices, maps, and channels only, and it returns an initialized
    (not zeroed)
    value of type T (not *T).
    The reason for the distinction
    is that these three types represent, under the covers, references to data structures that
    must be initialized before use.
    A slice, for example, is a three-item descriptor
    containing a pointer to the data (inside an array), the length, and the
    capacity, and until those items are initialized, the slice is nil.
    For slices, maps, and channels,
    make initializes the internal data structure and prepares
    the value for use.
    For instance,

    make([]int, 10, 100)
    

    allocates an array of 100 ints and then creates a slice
    structure with length 10 and a capacity of 100 pointing at the first
    10 elements of the array.
    (When making a slice, the capacity can be omitted; see the section on slices
    for more information.)
    In contrast, new([]int) returns a pointer to a newly allocated, zeroed slice
    structure, that is, a pointer to a nil slice value.

    These examples illustrate the difference between new and
    make.

    var p *[]int = new([]int)       // allocates slice structure; *p == nil; rarely useful
    var v  []int = make([]int, 100) // the slice v now refers to a new array of 100 ints
    
    // Unnecessarily complex:
    var p *[]int = new([]int)
    *p = make([]int, 100, 100)
    
    // Idiomatic:
    v := make([]int, 100)
    

    Remember that make applies only to maps, slices and channels
    and does not return a pointer.
    To obtain an explicit pointer allocate with new or take the address
    of a variable explicitly.

    Arrays

    Arrays are useful when planning the detailed layout of memory and sometimes
    can help avoid allocation, but primarily
    they are a building block for slices, the subject of the next section.
    To lay the foundation for that topic, here are a few words about arrays.

    There are major differences between the ways arrays work in Go and C.
    In Go,

    • Arrays are values. Assigning one array to another copies all the elements.
    • In particular, if you pass an array to a function, it
      will receive a copy of the array, not a pointer to it.
    • The size of an array is part of its type. The types [10]int
      and [20]int are distinct.

    The value property can be useful but also expensive; if you want C-like behavior and efficiency,
    you can pass a pointer to the array.

    func Sum(a *[3]float64) (sum float64) {
        for _, v := range *a {
            sum += v
        }
        return
    }
    
    array := [...]float64{7.0, 8.5, 9.1}
    x := Sum(&array)  // Note the explicit address-of operator
    

    But even this style isn’t idiomatic Go.
    Use slices instead.

    Slices

    Slices wrap arrays to give a more general, powerful, and convenient
    interface to sequences of data. Except for items with explicit
    dimension such as transformation matrices, most array programming in
    Go is done with slices rather than simple arrays.

    Slices hold references to an underlying array, and if you assign one
    slice to another, both refer to the same array.
    If a function takes a slice argument, changes it makes to
    the elements of the slice will be visible to the caller, analogous to
    passing a pointer to the underlying array. A Read
    function can therefore accept a slice argument rather than a pointer
    and a count; the length within the slice sets an upper
    limit of how much data to read. Here is the signature of the
    Read method of the File type in package
    os:

    func (f *File) Read(buf []byte) (n int, err error)
    

    The method returns the number of bytes read and an error value, if
    any.
    To read into the first 32 bytes of a larger buffer
    buf, slice (here used as a verb) the buffer.

        n, err := f.Read(buf[0:32])
    

    Such slicing is common and efficient. In fact, leaving efficiency aside for
    the moment, the following snippet would also read the first 32 bytes of the buffer.

        var n int
        var err error
        for i := 0; i < 32; i++ {
            nbytes, e := f.Read(buf[i:i+1])  // Read one byte.
            n += nbytes
            if nbytes == 0 || e != nil {
                err = e
                break
            }
        }
    

    The length of a slice may be changed as long as it still fits within
    the limits of the underlying array; just assign it to a slice of
    itself. The capacity of a slice, accessible by the built-in
    function cap, reports the maximum length the slice may
    assume. Here is a function to append data to a slice. If the data
    exceeds the capacity, the slice is reallocated. The
    resulting slice is returned. The function uses the fact that
    len and cap are legal when applied to the
    nil slice, and return 0.

    func Append(slice, data []byte) []byte {
        l := len(slice)
        if l + len(data) > cap(slice) {  // reallocate
            // Allocate double what's needed, for future growth.
            newSlice := make([]byte, (l+len(data))*2)
            // The copy function is predeclared and works for any slice type.
            copy(newSlice, slice)
            slice = newSlice
        }
        slice = slice[0:l+len(data)]
        copy(slice[l:], data)
        return slice
    }
    

    We must return the slice afterwards because, although Append
    can modify the elements of slice, the slice itself (the run-time data
    structure holding the pointer, length, and capacity) is passed by value.

    The idea of appending to a slice is so useful it’s captured by the
    append built-in function. To understand that function’s
    design, though, we need a little more information, so we’ll return
    to it later.

    Two-dimensional slices

    Go’s arrays and slices are one-dimensional.
    To create the equivalent of a 2D array or slice, it is necessary to define an array-of-arrays
    or slice-of-slices, like this:

    type Transform [3][3]float64  // A 3x3 array, really an array of arrays.
    type LinesOfText [][]byte     // A slice of byte slices.
    

    Because slices are variable-length, it is possible to have each inner
    slice be a different length.
    That can be a common situation, as in our LinesOfText
    example: each line has an independent length.

    text := LinesOfText{
        []byte("Now is the time"),
        []byte("for all good gophers"),
        []byte("to bring some fun to the party."),
    }
    

    Sometimes it’s necessary to allocate a 2D slice, a situation that can arise when
    processing scan lines of pixels, for instance.
    There are two ways to achieve this.
    One is to allocate each slice independently; the other
    is to allocate a single array and point the individual slices into it.
    Which to use depends on your application.
    If the slices might grow or shrink, they should be allocated independently
    to avoid overwriting the next line; if not, it can be more efficient to construct
    the object with a single allocation.
    For reference, here are sketches of the two methods.
    First, a line at a time:

    // Allocate the top-level slice.
    picture := make([][]uint8, YSize) // One row per unit of y.
    // Loop over the rows, allocating the slice for each row.
    for i := range picture {
        picture[i] = make([]uint8, XSize)
    }
    

    And now as one allocation, sliced into lines:

    // Allocate the top-level slice, the same as before.
    picture := make([][]uint8, YSize) // One row per unit of y.
    // Allocate one large slice to hold all the pixels.
    pixels := make([]uint8, XSize*YSize) // Has type []uint8 even though picture is [][]uint8.
    // Loop over the rows, slicing each row from the front of the remaining pixels slice.
    for i := range picture {
        picture[i], pixels = pixels[:XSize], pixels[XSize:]
    }
    

    Maps

    Maps are a convenient and powerful built-in data structure that associate
    values of one type (the key) with values of another type
    (the element or value).
    The key can be of any type for which the equality operator is defined,
    such as integers,
    floating point and complex numbers,
    strings, pointers, interfaces (as long as the dynamic type
    supports equality), structs and arrays.
    Slices cannot be used as map keys,
    because equality is not defined on them.
    Like slices, maps hold references to an underlying data structure.
    If you pass a map to a function
    that changes the contents of the map, the changes will be visible
    in the caller.

    Maps can be constructed using the usual composite literal syntax
    with colon-separated key-value pairs,
    so it’s easy to build them during initialization.

    var timeZone = map[string]int{
        "UTC":  0*60*60,
        "EST": -5*60*60,
        "CST": -6*60*60,
        "MST": -7*60*60,
        "PST": -8*60*60,
    }
    

    Assigning and fetching map values looks syntactically just like
    doing the same for arrays and slices except that the index doesn’t
    need to be an integer.

    offset := timeZone["EST"]
    

    An attempt to fetch a map value with a key that
    is not present in the map will return the zero value for the type
    of the entries
    in the map. For instance, if the map contains integers, looking
    up a non-existent key will return 0.
    A set can be implemented as a map with value type bool.
    Set the map entry to true to put the value in the set, and then
    test it by simple indexing.

    attended := map[string]bool{
        "Ann": true,
        "Joe": true,
        ...
    }
    
    if attended[person] { // will be false if person is not in the map
        fmt.Println(person, "was at the meeting")
    }
    

    Sometimes you need to distinguish a missing entry from
    a zero value. Is there an entry for "UTC"
    or is that 0 because it’s not in the map at all?
    You can discriminate with a form of multiple assignment.

    var seconds int
    var ok bool
    seconds, ok = timeZone[tz]
    

    For obvious reasons this is called the “comma ok” idiom.
    In this example, if tz is present, seconds
    will be set appropriately and ok will be true; if not,
    seconds will be set to zero and ok will
    be false.
    Here’s a function that puts it together with a nice error report:

    func offset(tz string) int {
        if seconds, ok := timeZone[tz]; ok {
            return seconds
        }
        log.Println("unknown time zone:", tz)
        return 0
    }
    

    To test for presence in the map without worrying about the actual value,
    you can use the blank identifier (_)
    in place of the usual variable for the value.

    _, present := timeZone[tz]
    

    To delete a map entry, use the delete
    built-in function, whose arguments are the map and the key to be deleted.
    It’s safe to do this even if the key is already absent
    from the map.

    delete(timeZone, "PDT")  // Now on Standard Time
    

    Printing

    Formatted printing in Go uses a style similar to C’s printf
    family but is richer and more general. The functions live in the fmt
    package and have capitalized names: fmt.Printf, fmt.Fprintf,
    fmt.Sprintf and so on. The string functions (Sprintf etc.)
    return a string rather than filling in a provided buffer.

    You don’t need to provide a format string. For each of Printf,
    Fprintf and Sprintf there is another pair
    of functions, for instance Print and Println.
    These functions do not take a format string but instead generate a default
    format for each argument. The Println versions also insert a blank
    between arguments and append a newline to the output while
    the Print versions add blanks only if the operand on neither side is a string.
    In this example each line produces the same output.

    fmt.Printf("Hello %dn", 23)
    fmt.Fprint(os.Stdout, "Hello ", 23, "n")
    fmt.Println("Hello", 23)
    fmt.Println(fmt.Sprint("Hello ", 23))
    

    The formatted print functions fmt.Fprint
    and friends take as a first argument any object
    that implements the io.Writer interface; the variables os.Stdout
    and os.Stderr are familiar instances.

    Here things start to diverge from C. First, the numeric formats such as %d
    do not take flags for signedness or size; instead, the printing routines use the
    type of the argument to decide these properties.

    var x uint64 = 1<<64 - 1
    fmt.Printf("%d %x; %d %xn", x, x, int64(x), int64(x))
    

    prints

    18446744073709551615 ffffffffffffffff; -1 -1
    

    If you just want the default conversion, such as decimal for integers, you can use
    the catchall format %v (for “value”); the result is exactly
    what Print and Println would produce.
    Moreover, that format can print any value, even arrays, slices, structs, and
    maps. Here is a print statement for the time zone map defined in the previous section.

    fmt.Printf("%vn", timeZone)  // or just fmt.Println(timeZone)
    

    which gives output:

    map[CST:-21600 EST:-18000 MST:-25200 PST:-28800 UTC:0]
    

    For maps, Printf and friends sort the output lexicographically by key.

    When printing a struct, the modified format %+v annotates the
    fields of the structure with their names, and for any value the alternate
    format %#v prints the value in full Go syntax.

    type T struct {
        a int
        b float64
        c string
    }
    t := &T{ 7, -2.35, "abctdef" }
    fmt.Printf("%vn", t)
    fmt.Printf("%+vn", t)
    fmt.Printf("%#vn", t)
    fmt.Printf("%#vn", timeZone)
    

    prints

    &{7 -2.35 abc   def}
    &{a:7 b:-2.35 c:abc     def}
    &main.T{a:7, b:-2.35, c:"abctdef"}
    map[string]int{"CST":-21600, "EST":-18000, "MST":-25200, "PST":-28800, "UTC":0}
    

    (Note the ampersands.)
    That quoted string format is also available through %q when
    applied to a value of type string or []byte.
    The alternate format %#q will use backquotes instead if possible.
    (The %q format also applies to integers and runes, producing a
    single-quoted rune constant.)
    Also, %x works on strings, byte arrays and byte slices as well as
    on integers, generating a long hexadecimal string, and with
    a space in the format (% x) it puts spaces between the bytes.

    Another handy format is %T, which prints the type of a value.

    fmt.Printf("%Tn", timeZone)
    

    prints

    map[string]int
    

    If you want to control the default format for a custom type, all that’s required is to define
    a method with the signature String() string on the type.
    For our simple type T, that might look like this.

    func (t *T) String() string {
        return fmt.Sprintf("%d/%g/%q", t.a, t.b, t.c)
    }
    fmt.Printf("%vn", t)
    

    to print in the format

    7/-2.35/"abctdef"
    

    (If you need to print values of type T as well as pointers to T,
    the receiver for String must be of value type; this example used a pointer because
    that’s more efficient and idiomatic for struct types.
    See the section below on pointers vs. value receivers for more information.)

    Our String method is able to call Sprintf because the
    print routines are fully reentrant and can be wrapped this way.
    There is one important detail to understand about this approach,
    however: don’t construct a String method by calling
    Sprintf in a way that will recur into your String
    method indefinitely. This can happen if the Sprintf
    call attempts to print the receiver directly as a string, which in
    turn will invoke the method again. It’s a common and easy mistake
    to make, as this example shows.

    type MyString string
    
    func (m MyString) String() string {
        return fmt.Sprintf("MyString=%s", m) // Error: will recur forever.
    }
    

    It’s also easy to fix: convert the argument to the basic string type, which does not have the
    method.

    type MyString string
    func (m MyString) String() string {
        return fmt.Sprintf("MyString=%s", string(m)) // OK: note conversion.
    }
    

    In the initialization section we’ll see another technique that avoids this recursion.

    Another printing technique is to pass a print routine’s arguments directly to another such routine.
    The signature of Printf uses the type ...interface{}
    for its final argument to specify that an arbitrary number of parameters (of arbitrary type)
    can appear after the format.

    func Printf(format string, v ...interface{}) (n int, err error) {
    

    Within the function Printf, v acts like a variable of type
    []interface{} but if it is passed to another variadic function, it acts like
    a regular list of arguments.
    Here is the implementation of the
    function log.Println we used above. It passes its arguments directly to
    fmt.Sprintln for the actual formatting.

    // Println prints to the standard logger in the manner of fmt.Println.
    func Println(v ...interface{}) {
        std.Output(2, fmt.Sprintln(v...))  // Output takes parameters (int, string)
    }
    

    We write ... after v in the nested call to Sprintln to tell the
    compiler to treat v as a list of arguments; otherwise it would just pass
    v as a single slice argument.

    There’s even more to printing than we’ve covered here. See the godoc documentation
    for package fmt for the details.

    By the way, a ... parameter can be of a specific type, for instance ...int
    for a min function that chooses the least of a list of integers:

    func Min(a ...int) int {
        min := int(^uint(0) >> 1)  // largest int
        for _, i := range a {
            if i < min {
                min = i
            }
        }
        return min
    }
    

    Append

    Now we have the missing piece we needed to explain the design of
    the append built-in function. The signature of append
    is different from our custom Append function above.
    Schematically, it’s like this:

    func append(slice []T, elements ...T) []T
    

    where T is a placeholder for any given type. You can’t
    actually write a function in Go where the type T
    is determined by the caller.
    That’s why append is built in: it needs support from the
    compiler.

    What append does is append the elements to the end of
    the slice and return the result. The result needs to be returned
    because, as with our hand-written Append, the underlying
    array may change. This simple example

    x := []int{1,2,3}
    x = append(x, 4, 5, 6)
    fmt.Println(x)
    

    prints [1 2 3 4 5 6]. So append works a
    little like Printf, collecting an arbitrary number of
    arguments.

    But what if we wanted to do what our Append does and
    append a slice to a slice? Easy: use ... at the call
    site, just as we did in the call to Output above. This
    snippet produces identical output to the one above.

    x := []int{1,2,3}
    y := []int{4,5,6}
    x = append(x, y...)
    fmt.Println(x)
    

    Without that ..., it wouldn’t compile because the types
    would be wrong; y is not of type int.

    Initialization

    Although it doesn’t look superficially very different from
    initialization in C or C++, initialization in Go is more powerful.
    Complex structures can be built during initialization and the ordering
    issues among initialized objects, even among different packages, are handled
    correctly.

    Constants

    Constants in Go are just that—constant.
    They are created at compile time, even when defined as
    locals in functions,
    and can only be numbers, characters (runes), strings or booleans.
    Because of the compile-time restriction, the expressions
    that define them must be constant expressions,
    evaluatable by the compiler. For instance,
    1<<3 is a constant expression, while
    math.Sin(math.Pi/4) is not because
    the function call to math.Sin needs
    to happen at run time.

    In Go, enumerated constants are created using the iota
    enumerator. Since iota can be part of an expression and
    expressions can be implicitly repeated, it is easy to build intricate
    sets of values.

    type ByteSize float64
    
    const (
        _           = iota 
        KB ByteSize = 1 << (10 * iota)
        MB
        GB
        TB
        PB
        EB
        ZB
        YB
    )
    

    The ability to attach a method such as String to any
    user-defined type makes it possible for arbitrary values to format themselves
    automatically for printing.
    Although you’ll see it most often applied to structs, this technique is also useful for
    scalar types such as floating-point types like ByteSize.

    func (b ByteSize) String() string {
        switch {
        case b >= YB:
            return fmt.Sprintf("%.2fYB", b/YB)
        case b >= ZB:
            return fmt.Sprintf("%.2fZB", b/ZB)
        case b >= EB:
            return fmt.Sprintf("%.2fEB", b/EB)
        case b >= PB:
            return fmt.Sprintf("%.2fPB", b/PB)
        case b >= TB:
            return fmt.Sprintf("%.2fTB", b/TB)
        case b >= GB:
            return fmt.Sprintf("%.2fGB", b/GB)
        case b >= MB:
            return fmt.Sprintf("%.2fMB", b/MB)
        case b >= KB:
            return fmt.Sprintf("%.2fKB", b/KB)
        }
        return fmt.Sprintf("%.2fB", b)
    }
    

    The expression YB prints as 1.00YB,
    while ByteSize(1e13) prints as 9.09TB.

    The use here of Sprintf
    to implement ByteSize‘s String method is safe
    (avoids recurring indefinitely) not because of a conversion but
    because it calls Sprintf with %f,
    which is not a string format: Sprintf will only call
    the String method when it wants a string, and %f
    wants a floating-point value.

    Variables

    Variables can be initialized just like constants but the
    initializer can be a general expression computed at run time.

    var (
        home   = os.Getenv("HOME")
        user   = os.Getenv("USER")
        gopath = os.Getenv("GOPATH")
    )
    

    The init function

    Finally, each source file can define its own niladic init function to
    set up whatever state is required. (Actually each file can have multiple
    init functions.)
    And finally means finally: init is called after all the
    variable declarations in the package have evaluated their initializers,
    and those are evaluated only after all the imported packages have been
    initialized.

    Besides initializations that cannot be expressed as declarations,
    a common use of init functions is to verify or repair
    correctness of the program state before real execution begins.

    func init() {
        if user == "" {
            log.Fatal("$USER not set")
        }
        if home == "" {
            home = "/home/" + user
        }
        if gopath == "" {
            gopath = home + "/go"
        }
        // gopath may be overridden by --gopath flag on command line.
        flag.StringVar(&gopath, "gopath", gopath, "override default GOPATH")
    }
    

    Methods

    Pointers vs. Values

    As we saw with ByteSize,
    methods can be defined for any named type (except a pointer or an interface);
    the receiver does not have to be a struct.

    In the discussion of slices above, we wrote an Append
    function. We can define it as a method on slices instead. To do
    this, we first declare a named type to which we can bind the method, and
    then make the receiver for the method a value of that type.

    type ByteSlice []byte
    
    func (slice ByteSlice) Append(data []byte) []byte {
        // Body exactly the same as the Append function defined above.
    }
    

    This still requires the method to return the updated slice. We can
    eliminate that clumsiness by redefining the method to take a
    pointer to a ByteSlice as its receiver, so the
    method can overwrite the caller’s slice.

    func (p *ByteSlice) Append(data []byte) {
        slice := *p
        // Body as above, without the return.
        *p = slice
    }
    

    In fact, we can do even better. If we modify our function so it looks
    like a standard Write method, like this,

    func (p *ByteSlice) Write(data []byte) (n int, err error) {
        slice := *p
        // Again as above.
        *p = slice
        return len(data), nil
    }
    

    then the type *ByteSlice satisfies the standard interface
    io.Writer, which is handy. For instance, we can
    print into one.

        var b ByteSlice
        fmt.Fprintf(&b, "This hour has %d daysn", 7)
    

    We pass the address of a ByteSlice
    because only *ByteSlice satisfies io.Writer.
    The rule about pointers vs. values for receivers is that value methods
    can be invoked on pointers and values, but pointer methods can only be
    invoked on pointers.

    This rule arises because pointer methods can modify the receiver; invoking
    them on a value would cause the method to receive a copy of the value, so
    any modifications would be discarded.
    The language therefore disallows this mistake.
    There is a handy exception, though. When the value is addressable, the
    language takes care of the common case of invoking a pointer method on a
    value by inserting the address operator automatically.
    In our example, the variable b is addressable, so we can call
    its Write method with just b.Write. The compiler
    will rewrite that to (&b).Write for us.

    By the way, the idea of using Write on a slice of bytes
    is central to the implementation of bytes.Buffer.

    Interfaces and other types

    Interfaces

    Interfaces in Go provide a way to specify the behavior of an
    object: if something can do this, then it can be used
    here. We’ve seen a couple of simple examples already;
    custom printers can be implemented by a String method
    while Fprintf can generate output to anything
    with a Write method.
    Interfaces with only one or two methods are common in Go code, and are
    usually given a name derived from the method, such as io.Writer
    for something that implements Write.

    A type can implement multiple interfaces.
    For instance, a collection can be sorted
    by the routines in package sort if it implements
    sort.Interface, which contains Len(),
    Less(i, j int) bool, and Swap(i, j int),
    and it could also have a custom formatter.
    In this contrived example Sequence satisfies both.

    type Sequence []int
    
    
    func (s Sequence) Len() int {
        return len(s)
    }
    func (s Sequence) Less(i, j int) bool {
        return s[i] < s[j]
    }
    func (s Sequence) Swap(i, j int) {
        s[i], s[j] = s[j], s[i]
    }
    
    
    func (s Sequence) Copy() Sequence {
        copy := make(Sequence, 0, len(s))
        return append(copy, s...)
    }
    
    
    func (s Sequence) String() string {
        s = s.Copy() 
        sort.Sort(s)
        str := "["
        for i, elem := range s { 
            if i > 0 {
                str += " "
            }
            str += fmt.Sprint(elem)
        }
        return str + "]"
    }
    

    Conversions

    The String method of Sequence is recreating the
    work that Sprint already does for slices.
    (It also has complexity O(N²), which is poor.) We can share the
    effort (and also speed it up) if we convert the Sequence to a plain
    []int before calling Sprint.

    func (s Sequence) String() string {
        s = s.Copy()
        sort.Sort(s)
        return fmt.Sprint([]int(s))
    }
    

    This method is another example of the conversion technique for calling
    Sprintf safely from a String method.
    Because the two types (Sequence and []int)
    are the same if we ignore the type name, it’s legal to convert between them.
    The conversion doesn’t create a new value, it just temporarily acts
    as though the existing value has a new type.
    (There are other legal conversions, such as from integer to floating point, that
    do create a new value.)

    It’s an idiom in Go programs to convert the
    type of an expression to access a different
    set of methods. As an example, we could use the existing
    type sort.IntSlice to reduce the entire example
    to this:

    type Sequence []int
    
    // Method for printing - sorts the elements before printing
    func (s Sequence) String() string {
        s = s.Copy()
        sort.IntSlice(s).Sort()
        return fmt.Sprint([]int(s))
    }
    

    Now, instead of having Sequence implement multiple
    interfaces (sorting and printing), we’re using the ability of a data item to be
    converted to multiple types (Sequence, sort.IntSlice
    and []int), each of which does some part of the job.
    That’s more unusual in practice but can be effective.

    Interface conversions and type assertions

    Type switches are a form of conversion: they take an interface and, for
    each case in the switch, in a sense convert it to the type of that case.
    Here’s a simplified version of how the code under fmt.Printf turns a value into
    a string using a type switch.
    If it’s already a string, we want the actual string value held by the interface, while if it has a
    String method we want the result of calling the method.

    type Stringer interface {
        String() string
    }
    
    var value interface{} // Value provided by caller.
    switch str := value.(type) {
    case string:
        return str
    case Stringer:
        return str.String()
    }
    

    The first case finds a concrete value; the second converts the interface into another interface.
    It’s perfectly fine to mix types this way.

    What if there’s only one type we care about? If we know the value holds a string
    and we just want to extract it?
    A one-case type switch would do, but so would a type assertion.
    A type assertion takes an interface value and extracts from it a value of the specified explicit type.
    The syntax borrows from the clause opening a type switch, but with an explicit
    type rather than the type keyword:

    value.(typeName)
    

    and the result is a new value with the static type typeName.
    That type must either be the concrete type held by the interface, or a second interface
    type that the value can be converted to.
    To extract the string we know is in the value, we could write:

    str := value.(string)
    

    But if it turns out that the value does not contain a string, the program will crash with a run-time error.
    To guard against that, use the «comma, ok» idiom to test, safely, whether the value is a string:

    str, ok := value.(string)
    if ok {
        fmt.Printf("string value is: %qn", str)
    } else {
        fmt.Printf("value is not a stringn")
    }
    

    If the type assertion fails, str will still exist and be of type string, but it will have
    the zero value, an empty string.

    As an illustration of the capability, here’s an ifelse
    statement that’s equivalent to the type switch that opened this section.

    if str, ok := value.(string); ok {
        return str
    } else if str, ok := value.(Stringer); ok {
        return str.String()
    }
    

    Generality

    If a type exists only to implement an interface and will
    never have exported methods beyond that interface, there is
    no need to export the type itself.
    Exporting just the interface makes it clear the value has no
    interesting behavior beyond what is described in the
    interface.
    It also avoids the need to repeat the documentation
    on every instance of a common method.

    In such cases, the constructor should return an interface value
    rather than the implementing type.
    As an example, in the hash libraries
    both crc32.NewIEEE and adler32.New
    return the interface type hash.Hash32.
    Substituting the CRC-32 algorithm for Adler-32 in a Go program
    requires only changing the constructor call;
    the rest of the code is unaffected by the change of algorithm.

    A similar approach allows the streaming cipher algorithms
    in the various crypto packages to be
    separated from the block ciphers they chain together.
    The Block interface
    in the crypto/cipher package specifies the
    behavior of a block cipher, which provides encryption
    of a single block of data.
    Then, by analogy with the bufio package,
    cipher packages that implement this interface
    can be used to construct streaming ciphers, represented
    by the Stream interface, without
    knowing the details of the block encryption.

    The crypto/cipher interfaces look like this:

    type Block interface {
        BlockSize() int
        Encrypt(dst, src []byte)
        Decrypt(dst, src []byte)
    }
    
    type Stream interface {
        XORKeyStream(dst, src []byte)
    }
    

    Here’s the definition of the counter mode (CTR) stream,
    which turns a block cipher into a streaming cipher; notice
    that the block cipher’s details are abstracted away:

    // NewCTR returns a Stream that encrypts/decrypts using the given Block in
    // counter mode. The length of iv must be the same as the Block's block size.
    func NewCTR(block Block, iv []byte) Stream
    

    NewCTR applies not
    just to one specific encryption algorithm and data source but to any
    implementation of the Block interface and any
    Stream. Because they return
    interface values, replacing CTR
    encryption with other encryption modes is a localized change. The constructor
    calls must be edited, but because the surrounding code must treat the result only
    as a Stream, it won’t notice the difference.

    Interfaces and methods

    Since almost anything can have methods attached, almost anything can
    satisfy an interface. One illustrative example is in the http
    package, which defines the Handler interface. Any object
    that implements Handler can serve HTTP requests.

    type Handler interface {
        ServeHTTP(ResponseWriter, *Request)
    }
    

    ResponseWriter is itself an interface that provides access
    to the methods needed to return the response to the client.
    Those methods include the standard Write method, so an
    http.ResponseWriter can be used wherever an io.Writer
    can be used.
    Request is a struct containing a parsed representation
    of the request from the client.

    For brevity, let’s ignore POSTs and assume HTTP requests are always
    GETs; that simplification does not affect the way the handlers are set up.
    Here’s a trivial implementation of a handler to count the number of times
    the page is visited.

    // Simple counter server.
    type Counter struct {
        n int
    }
    
    func (ctr *Counter) ServeHTTP(w http.ResponseWriter, req *http.Request) {
        ctr.n++
        fmt.Fprintf(w, "counter = %dn", ctr.n)
    }
    

    (Keeping with our theme, note how Fprintf can print to an
    http.ResponseWriter.)
    In a real server, access to ctr.n would need protection from
    concurrent access.
    See the sync and atomic packages for suggestions.

    For reference, here’s how to attach such a server to a node on the URL tree.

    import "net/http"
    ...
    ctr := new(Counter)
    http.Handle("/counter", ctr)
    

    But why make Counter a struct? An integer is all that’s needed.
    (The receiver needs to be a pointer so the increment is visible to the caller.)

    // Simpler counter server.
    type Counter int
    
    func (ctr *Counter) ServeHTTP(w http.ResponseWriter, req *http.Request) {
        *ctr++
        fmt.Fprintf(w, "counter = %dn", *ctr)
    }
    

    What if your program has some internal state that needs to be notified that a page
    has been visited? Tie a channel to the web page.

    // A channel that sends a notification on each visit.
    // (Probably want the channel to be buffered.)
    type Chan chan *http.Request
    
    func (ch Chan) ServeHTTP(w http.ResponseWriter, req *http.Request) {
        ch <- req
        fmt.Fprint(w, "notification sent")
    }
    

    Finally, let’s say we wanted to present on /args the arguments
    used when invoking the server binary.
    It’s easy to write a function to print the arguments.

    func ArgServer() {
        fmt.Println(os.Args)
    }
    

    How do we turn that into an HTTP server? We could make ArgServer
    a method of some type whose value we ignore, but there’s a cleaner way.
    Since we can define a method for any type except pointers and interfaces,
    we can write a method for a function.
    The http package contains this code:

    // The HandlerFunc type is an adapter to allow the use of
    // ordinary functions as HTTP handlers.  If f is a function
    // with the appropriate signature, HandlerFunc(f) is a
    // Handler object that calls f.
    type HandlerFunc func(ResponseWriter, *Request)
    
    // ServeHTTP calls f(w, req).
    func (f HandlerFunc) ServeHTTP(w ResponseWriter, req *Request) {
        f(w, req)
    }
    

    HandlerFunc is a type with a method, ServeHTTP,
    so values of that type can serve HTTP requests. Look at the implementation
    of the method: the receiver is a function, f, and the method
    calls f. That may seem odd but it’s not that different from, say,
    the receiver being a channel and the method sending on the channel.

    To make ArgServer into an HTTP server, we first modify it
    to have the right signature.

    // Argument server.
    func ArgServer(w http.ResponseWriter, req *http.Request) {
        fmt.Fprintln(w, os.Args)
    }
    

    ArgServer now has same signature as HandlerFunc,
    so it can be converted to that type to access its methods,
    just as we converted Sequence to IntSlice
    to access IntSlice.Sort.
    The code to set it up is concise:

    http.Handle("/args", http.HandlerFunc(ArgServer))
    

    When someone visits the page /args,
    the handler installed at that page has value ArgServer
    and type HandlerFunc.
    The HTTP server will invoke the method ServeHTTP
    of that type, with ArgServer as the receiver, which will in turn call
    ArgServer (via the invocation f(w, req)
    inside HandlerFunc.ServeHTTP).
    The arguments will then be displayed.

    In this section we have made an HTTP server from a struct, an integer,
    a channel, and a function, all because interfaces are just sets of
    methods, which can be defined for (almost) any type.

    The blank identifier

    We’ve mentioned the blank identifier a couple of times now, in the context of
    for range loops
    and maps.
    The blank identifier can be assigned or declared with any value of any type, with the
    value discarded harmlessly.
    It’s a bit like writing to the Unix /dev/null file:
    it represents a write-only value
    to be used as a place-holder
    where a variable is needed but the actual value is irrelevant.
    It has uses beyond those we’ve seen already.

    The blank identifier in multiple assignment

    The use of a blank identifier in a for range loop is a
    special case of a general situation: multiple assignment.

    If an assignment requires multiple values on the left side,
    but one of the values will not be used by the program,
    a blank identifier on the left-hand-side of
    the assignment avoids the need
    to create a dummy variable and makes it clear that the
    value is to be discarded.
    For instance, when calling a function that returns
    a value and an error, but only the error is important,
    use the blank identifier to discard the irrelevant value.

    if _, err := os.Stat(path); os.IsNotExist(err) {
        fmt.Printf("%s does not existn", path)
    }
    

    Occasionally you’ll see code that discards the error value in order
    to ignore the error; this is terrible practice. Always check error returns;
    they’re provided for a reason.

    // Bad! This code will crash if path does not exist.
    fi, _ := os.Stat(path)
    if fi.IsDir() {
        fmt.Printf("%s is a directoryn", path)
    }
    

    Unused imports and variables

    It is an error to import a package or to declare a variable without using it.
    Unused imports bloat the program and slow compilation,
    while a variable that is initialized but not used is at least
    a wasted computation and perhaps indicative of a
    larger bug.
    When a program is under active development, however,
    unused imports and variables often arise and it can
    be annoying to delete them just to have the compilation proceed,
    only to have them be needed again later.
    The blank identifier provides a workaround.

    This half-written program has two unused imports
    (fmt and io)
    and an unused variable (fd),
    so it will not compile, but it would be nice to see if the
    code so far is correct.

    package main
    
    import (
        "fmt"
        "io"
        "log"
        "os"
    )
    
    func main() {
        fd, err := os.Open("test.go")
        if err != nil {
            log.Fatal(err)
        }
        
    }
    

    To silence complaints about the unused imports, use a
    blank identifier to refer to a symbol from the imported package.
    Similarly, assigning the unused variable fd
    to the blank identifier will silence the unused variable error.
    This version of the program does compile.

    package main
    
    import (
        "fmt"
        "io"
        "log"
        "os"
    )
    
    var _ = fmt.Printf 
    var _ io.Reader    
    
    func main() {
        fd, err := os.Open("test.go")
        if err != nil {
            log.Fatal(err)
        }
        
        _ = fd
    }
    

    By convention, the global declarations to silence import errors
    should come right after the imports and be commented,
    both to make them easy to find and as a reminder to clean things up later.

    Import for side effect

    An unused import like fmt or io in the
    previous example should eventually be used or removed:
    blank assignments identify code as a work in progress.
    But sometimes it is useful to import a package only for its
    side effects, without any explicit use.
    For example, during its init function,
    the net/http/pprof
    package registers HTTP handlers that provide
    debugging information. It has an exported API, but
    most clients need only the handler registration and
    access the data through a web page.
    To import the package only for its side effects, rename the package
    to the blank identifier:

    import _ "net/http/pprof"
    

    This form of import makes clear that the package is being
    imported for its side effects, because there is no other possible
    use of the package: in this file, it doesn’t have a name.
    (If it did, and we didn’t use that name, the compiler would reject the program.)

    Interface checks

    As we saw in the discussion of interfaces above,
    a type need not declare explicitly that it implements an interface.
    Instead, a type implements the interface just by implementing the interface’s methods.
    In practice, most interface conversions are static and therefore checked at compile time.
    For example, passing an *os.File to a function
    expecting an io.Reader will not compile unless
    *os.File implements the io.Reader interface.

    Some interface checks do happen at run-time, though.
    One instance is in the encoding/json
    package, which defines a Marshaler
    interface. When the JSON encoder receives a value that implements that interface,
    the encoder invokes the value’s marshaling method to convert it to JSON
    instead of doing the standard conversion.
    The encoder checks this property at run time with a type assertion like:

    m, ok := val.(json.Marshaler)
    

    If it’s necessary only to ask whether a type implements an interface, without
    actually using the interface itself, perhaps as part of an error check, use the blank
    identifier to ignore the type-asserted value:

    if _, ok := val.(json.Marshaler); ok {
        fmt.Printf("value %v of type %T implements json.Marshalern", val, val)
    }
    

    One place this situation arises is when it is necessary to guarantee within the package implementing the type that
    it actually satisfies the interface.
    If a type—for example,
    json.RawMessage—needs
    a custom JSON representation, it should implement
    json.Marshaler, but there are no static conversions that would
    cause the compiler to verify this automatically.
    If the type inadvertently fails to satisfy the interface, the JSON encoder will still work,
    but will not use the custom implementation.
    To guarantee that the implementation is correct,
    a global declaration using the blank identifier can be used in the package:

    var _ json.Marshaler = (*RawMessage)(nil)
    

    In this declaration, the assignment involving a conversion of a
    *RawMessage to a Marshaler
    requires that *RawMessage implements Marshaler,
    and that property will be checked at compile time.
    Should the json.Marshaler interface change, this package
    will no longer compile and we will be on notice that it needs to be updated.

    The appearance of the blank identifier in this construct indicates that
    the declaration exists only for the type checking,
    not to create a variable.
    Don’t do this for every type that satisfies an interface, though.
    By convention, such declarations are only used
    when there are no static conversions already present in the code,
    which is a rare event.

    Embedding

    Go does not provide the typical, type-driven notion of subclassing,
    but it does have the ability to “borrow” pieces of an
    implementation by embedding types within a struct or
    interface.

    Interface embedding is very simple.
    We’ve mentioned the io.Reader and io.Writer interfaces before;
    here are their definitions.

    type Reader interface {
        Read(p []byte) (n int, err error)
    }
    
    type Writer interface {
        Write(p []byte) (n int, err error)
    }
    

    The io package also exports several other interfaces
    that specify objects that can implement several such methods.
    For instance, there is io.ReadWriter, an interface
    containing both Read and Write.
    We could specify io.ReadWriter by listing the
    two methods explicitly, but it’s easier and more evocative
    to embed the two interfaces to form the new one, like this:

    // ReadWriter is the interface that combines the Reader and Writer interfaces.
    type ReadWriter interface {
        Reader
        Writer
    }
    

    This says just what it looks like: A ReadWriter can do
    what a Reader does and what a Writer
    does; it is a union of the embedded interfaces.
    Only interfaces can be embedded within interfaces.

    The same basic idea applies to structs, but with more far-reaching
    implications. The bufio package has two struct types,
    bufio.Reader and bufio.Writer, each of
    which of course implements the analogous interfaces from package
    io.
    And bufio also implements a buffered reader/writer,
    which it does by combining a reader and a writer into one struct
    using embedding: it lists the types within the struct
    but does not give them field names.

    // ReadWriter stores pointers to a Reader and a Writer.
    // It implements io.ReadWriter.
    type ReadWriter struct {
        *Reader  // *bufio.Reader
        *Writer  // *bufio.Writer
    }
    

    The embedded elements are pointers to structs and of course
    must be initialized to point to valid structs before they
    can be used.
    The ReadWriter struct could be written as

    type ReadWriter struct {
        reader *Reader
        writer *Writer
    }
    

    but then to promote the methods of the fields and to
    satisfy the io interfaces, we would also need
    to provide forwarding methods, like this:

    func (rw *ReadWriter) Read(p []byte) (n int, err error) {
        return rw.reader.Read(p)
    }
    

    By embedding the structs directly, we avoid this bookkeeping.
    The methods of embedded types come along for free, which means that bufio.ReadWriter
    not only has the methods of bufio.Reader and bufio.Writer,
    it also satisfies all three interfaces:
    io.Reader,
    io.Writer, and
    io.ReadWriter.

    There’s an important way in which embedding differs from subclassing. When we embed a type,
    the methods of that type become methods of the outer type,
    but when they are invoked the receiver of the method is the inner type, not the outer one.
    In our example, when the Read method of a bufio.ReadWriter is
    invoked, it has exactly the same effect as the forwarding method written out above;
    the receiver is the reader field of the ReadWriter, not the
    ReadWriter itself.

    Embedding can also be a simple convenience.
    This example shows an embedded field alongside a regular, named field.

    type Job struct {
        Command string
        *log.Logger
    }
    

    The Job type now has the Print, Printf, Println
    and other
    methods of *log.Logger. We could have given the Logger
    a field name, of course, but it’s not necessary to do so. And now, once
    initialized, we can
    log to the Job:

    job.Println("starting now...")
    

    The Logger is a regular field of the Job struct,
    so we can initialize it in the usual way inside the constructor for Job, like this,

    func NewJob(command string, logger *log.Logger) *Job {
        return &Job{command, logger}
    }
    

    or with a composite literal,

    job := &Job{command, log.New(os.Stderr, "Job: ", log.Ldate)}
    

    If we need to refer to an embedded field directly, the type name of the field,
    ignoring the package qualifier, serves as a field name, as it did
    in the Read method of our ReadWriter struct.
    Here, if we needed to access the
    *log.Logger of a Job variable job,
    we would write job.Logger,
    which would be useful if we wanted to refine the methods of Logger.

    func (job *Job) Printf(format string, args ...interface{}) {
        job.Logger.Printf("%q: %s", job.Command, fmt.Sprintf(format, args...))
    }
    

    Embedding types introduces the problem of name conflicts but the rules to resolve
    them are simple.
    First, a field or method X hides any other item X in a more deeply
    nested part of the type.
    If log.Logger contained a field or method called Command, the Command field
    of Job would dominate it.

    Second, if the same name appears at the same nesting level, it is usually an error;
    it would be erroneous to embed log.Logger if the Job struct
    contained another field or method called Logger.
    However, if the duplicate name is never mentioned in the program outside the type definition, it is OK.
    This qualification provides some protection against changes made to types embedded from outside; there
    is no problem if a field is added that conflicts with another field in another subtype if neither field
    is ever used.

    Concurrency

    Share by communicating

    Concurrent programming is a large topic and there is space only for some
    Go-specific highlights here.

    Concurrent programming in many environments is made difficult by the
    subtleties required to implement correct access to shared variables. Go encourages
    a different approach in which shared values are passed around on channels
    and, in fact, never actively shared by separate threads of execution.
    Only one goroutine has access to the value at any given time.
    Data races cannot occur, by design.
    To encourage this way of thinking we have reduced it to a slogan:

    Do not communicate by sharing memory;
    instead, share memory by communicating.

    This approach can be taken too far. Reference counts may be best done
    by putting a mutex around an integer variable, for instance. But as a
    high-level approach, using channels to control access makes it easier
    to write clear, correct programs.

    One way to think about this model is to consider a typical single-threaded
    program running on one CPU. It has no need for synchronization primitives.
    Now run another such instance; it too needs no synchronization. Now let those
    two communicate; if the communication is the synchronizer, there’s still no need
    for other synchronization. Unix pipelines, for example, fit this model
    perfectly. Although Go’s approach to concurrency originates in Hoare’s
    Communicating Sequential Processes (CSP),
    it can also be seen as a type-safe generalization of Unix pipes.

    Goroutines

    They’re called goroutines because the existing
    terms—threads, coroutines, processes, and so on—convey
    inaccurate connotations. A goroutine has a simple model: it is a
    function executing concurrently with other goroutines in the same
    address space. It is lightweight, costing little more than the
    allocation of stack space.
    And the stacks start small, so they are cheap, and grow
    by allocating (and freeing) heap storage as required.

    Goroutines are multiplexed onto multiple OS threads so if one should
    block, such as while waiting for I/O, others continue to run. Their
    design hides many of the complexities of thread creation and
    management.

    Prefix a function or method call with the go
    keyword to run the call in a new goroutine.
    When the call completes, the goroutine
    exits, silently. (The effect is similar to the Unix shell’s
    & notation for running a command in the
    background.)

    go list.Sort()  // run list.Sort concurrently; don't wait for it.
    

    A function literal can be handy in a goroutine invocation.

    func Announce(message string, delay time.Duration) {
        go func() {
            time.Sleep(delay)
            fmt.Println(message)
        }()  // Note the parentheses - must call the function.
    }
    

    In Go, function literals are closures: the implementation makes
    sure the variables referred to by the function survive as long as they are active.

    These examples aren’t too practical because the functions have no way of signaling
    completion. For that, we need channels.

    Channels

    Like maps, channels are allocated with make, and
    the resulting value acts as a reference to an underlying data structure.
    If an optional integer parameter is provided, it sets the buffer size for the channel.
    The default is zero, for an unbuffered or synchronous channel.

    ci := make(chan int)            // unbuffered channel of integers
    cj := make(chan int, 0)         // unbuffered channel of integers
    cs := make(chan *os.File, 100)  // buffered channel of pointers to Files
    

    Unbuffered channels combine communication—the exchange of a value—with
    synchronization—guaranteeing that two calculations (goroutines) are in
    a known state.

    There are lots of nice idioms using channels. Here’s one to get us started.
    In the previous section we launched a sort in the background. A channel
    can allow the launching goroutine to wait for the sort to complete.

    c := make(chan int)  // Allocate a channel.
    // Start the sort in a goroutine; when it completes, signal on the channel.
    go func() {
        list.Sort()
        c <- 1  // Send a signal; value does not matter.
    }()
    doSomethingForAWhile()
    <-c   // Wait for sort to finish; discard sent value.
    

    Receivers always block until there is data to receive.
    If the channel is unbuffered, the sender blocks until the receiver has
    received the value.
    If the channel has a buffer, the sender blocks only until the
    value has been copied to the buffer; if the buffer is full, this
    means waiting until some receiver has retrieved a value.

    A buffered channel can be used like a semaphore, for instance to
    limit throughput. In this example, incoming requests are passed
    to handle, which sends a value into the channel, processes
    the request, and then receives a value from the channel
    to ready the “semaphore” for the next consumer.
    The capacity of the channel buffer limits the number of
    simultaneous calls to process.

    var sem = make(chan int, MaxOutstanding)
    
    func handle(r *Request) {
        sem <- 1    // Wait for active queue to drain.
        process(r)  // May take a long time.
        <-sem       // Done; enable next request to run.
    }
    
    func Serve(queue chan *Request) {
        for {
            req := <-queue
            go handle(req)  // Don't wait for handle to finish.
        }
    }
    

    Once MaxOutstanding handlers are executing process,
    any more will block trying to send into the filled channel buffer,
    until one of the existing handlers finishes and receives from the buffer.

    This design has a problem, though: Serve
    creates a new goroutine for
    every incoming request, even though only MaxOutstanding
    of them can run at any moment.
    As a result, the program can consume unlimited resources if the requests come in too fast.
    We can address that deficiency by changing Serve to
    gate the creation of the goroutines.
    Here’s an obvious solution, but beware it has a bug we’ll fix subsequently:

    func Serve(queue chan *Request) {
        for req := range queue {
            sem <- 1
            go func() {
                process(req) // Buggy; see explanation below.
                <-sem
            }()
        }
    }

    The bug is that in a Go for loop, the loop variable
    is reused for each iteration, so the req
    variable is shared across all goroutines.
    That’s not what we want.
    We need to make sure that req is unique for each goroutine.
    Here’s one way to do that, passing the value of req as an argument
    to the closure in the goroutine:

    func Serve(queue chan *Request) {
        for req := range queue {
            sem <- 1
            go func(req *Request) {
                process(req)
                <-sem
            }(req)
        }
    }

    Compare this version with the previous to see the difference in how
    the closure is declared and run.
    Another solution is just to create a new variable with the same
    name, as in this example:

    func Serve(queue chan *Request) {
        for req := range queue {
            req := req // Create new instance of req for the goroutine.
            sem <- 1
            go func() {
                process(req)
                <-sem
            }()
        }
    }

    It may seem odd to write

    req := req
    

    but it’s legal and idiomatic in Go to do this.
    You get a fresh version of the variable with the same name, deliberately
    shadowing the loop variable locally but unique to each goroutine.

    Going back to the general problem of writing the server,
    another approach that manages resources well is to start a fixed
    number of handle goroutines all reading from the request
    channel.
    The number of goroutines limits the number of simultaneous
    calls to process.
    This Serve function also accepts a channel on which
    it will be told to exit; after launching the goroutines it blocks
    receiving from that channel.

    func handle(queue chan *Request) {
        for r := range queue {
            process(r)
        }
    }
    
    func Serve(clientRequests chan *Request, quit chan bool) {
        // Start handlers
        for i := 0; i < MaxOutstanding; i++ {
            go handle(clientRequests)
        }
        <-quit  // Wait to be told to exit.
    }
    

    Channels of channels

    One of the most important properties of Go is that
    a channel is a first-class value that can be allocated and passed
    around like any other. A common use of this property is
    to implement safe, parallel demultiplexing.

    In the example in the previous section, handle was
    an idealized handler for a request but we didn’t define the
    type it was handling. If that type includes a channel on which
    to reply, each client can provide its own path for the answer.
    Here’s a schematic definition of type Request.

    type Request struct {
        args        []int
        f           func([]int) int
        resultChan  chan int
    }
    

    The client provides a function and its arguments, as well as
    a channel inside the request object on which to receive the answer.

    func sum(a []int) (s int) {
        for _, v := range a {
            s += v
        }
        return
    }
    
    request := &Request{[]int{3, 4, 5}, sum, make(chan int)}
    // Send request
    clientRequests <- request
    // Wait for response.
    fmt.Printf("answer: %dn", <-request.resultChan)
    

    On the server side, the handler function is the only thing that changes.

    func handle(queue chan *Request) {
        for req := range queue {
            req.resultChan <- req.f(req.args)
        }
    }
    

    There’s clearly a lot more to do to make it realistic, but this
    code is a framework for a rate-limited, parallel, non-blocking RPC
    system, and there’s not a mutex in sight.

    Parallelization

    Another application of these ideas is to parallelize a calculation
    across multiple CPU cores. If the calculation can be broken into
    separate pieces that can execute independently, it can be parallelized,
    with a channel to signal when each piece completes.

    Let’s say we have an expensive operation to perform on a vector of items,
    and that the value of the operation on each item is independent,
    as in this idealized example.

    type Vector []float64
    
    // Apply the operation to v[i], v[i+1] ... up to v[n-1].
    func (v Vector) DoSome(i, n int, u Vector, c chan int) {
        for ; i < n; i++ {
            v[i] += u.Op(v[i])
        }
        c <- 1    // signal that this piece is done
    }
    

    We launch the pieces independently in a loop, one per CPU.
    They can complete in any order but it doesn’t matter; we just
    count the completion signals by draining the channel after
    launching all the goroutines.

    const numCPU = 4 // number of CPU cores
    
    func (v Vector) DoAll(u Vector) {
        c := make(chan int, numCPU)  // Buffering optional but sensible.
        for i := 0; i < numCPU; i++ {
            go v.DoSome(i*len(v)/numCPU, (i+1)*len(v)/numCPU, u, c)
        }
        // Drain the channel.
        for i := 0; i < numCPU; i++ {
            <-c    // wait for one task to complete
        }
        // All done.
    }
    

    Rather than create a constant value for numCPU, we can ask the runtime what
    value is appropriate.
    The function runtime.NumCPU
    returns the number of hardware CPU cores in the machine, so we could write

    var numCPU = runtime.NumCPU()
    

    There is also a function
    runtime.GOMAXPROCS,
    which reports (or sets)
    the user-specified number of cores that a Go program can have running
    simultaneously.
    It defaults to the value of runtime.NumCPU but can be
    overridden by setting the similarly named shell environment variable
    or by calling the function with a positive number. Calling it with
    zero just queries the value.
    Therefore if we want to honor the user’s resource request, we should write

    var numCPU = runtime.GOMAXPROCS(0)
    

    Be sure not to confuse the ideas of concurrency—structuring a program
    as independently executing components—and parallelism—executing
    calculations in parallel for efficiency on multiple CPUs.
    Although the concurrency features of Go can make some problems easy
    to structure as parallel computations, Go is a concurrent language,
    not a parallel one, and not all parallelization problems fit Go’s model.
    For a discussion of the distinction, see the talk cited in
    this
    blog post.

    A leaky buffer

    The tools of concurrent programming can even make non-concurrent
    ideas easier to express. Here’s an example abstracted from an RPC
    package. The client goroutine loops receiving data from some source,
    perhaps a network. To avoid allocating and freeing buffers, it keeps
    a free list, and uses a buffered channel to represent it. If the
    channel is empty, a new buffer gets allocated.
    Once the message buffer is ready, it’s sent to the server on
    serverChan.

    var freeList = make(chan *Buffer, 100)
    var serverChan = make(chan *Buffer)
    
    func client() {
        for {
            var b *Buffer
            // Grab a buffer if available; allocate if not.
            select {
            case b = <-freeList:
                // Got one; nothing more to do.
            default:
                // None free, so allocate a new one.
                b = new(Buffer)
            }
            load(b)              // Read next message from the net.
            serverChan <- b      // Send to server.
        }
    }
    

    The server loop receives each message from the client, processes it,
    and returns the buffer to the free list.

    func server() {
        for {
            b := <-serverChan    // Wait for work.
            process(b)
            // Reuse buffer if there's room.
            select {
            case freeList <- b:
                // Buffer on free list; nothing more to do.
            default:
                // Free list full, just carry on.
            }
        }
    }
    

    The client attempts to retrieve a buffer from freeList;
    if none is available, it allocates a fresh one.
    The server’s send to freeList puts b back
    on the free list unless the list is full, in which case the
    buffer is dropped on the floor to be reclaimed by
    the garbage collector.
    (The default clauses in the select
    statements execute when no other case is ready,
    meaning that the selects never block.)
    This implementation builds a leaky bucket free list
    in just a few lines, relying on the buffered channel and
    the garbage collector for bookkeeping.

    Errors

    Library routines must often return some sort of error indication to
    the caller.
    As mentioned earlier, Go’s multivalue return makes it
    easy to return a detailed error description alongside the normal
    return value.
    It is good style to use this feature to provide detailed error information.
    For example, as we’ll see, os.Open doesn’t
    just return a nil pointer on failure, it also returns an
    error value that describes what went wrong.

    By convention, errors have type error,
    a simple built-in interface.

    type error interface {
        Error() string
    }
    

    A library writer is free to implement this interface with a
    richer model under the covers, making it possible not only
    to see the error but also to provide some context.
    As mentioned, alongside the usual *os.File
    return value, os.Open also returns an
    error value.
    If the file is opened successfully, the error will be nil,
    but when there is a problem, it will hold an
    os.PathError:

    // PathError records an error and the operation and
    // file path that caused it.
    type PathError struct {
        Op string    // "open", "unlink", etc.
        Path string  // The associated file.
        Err error    // Returned by the system call.
    }
    
    func (e *PathError) Error() string {
        return e.Op + " " + e.Path + ": " + e.Err.Error()
    }
    

    PathError‘s Error generates
    a string like this:

    open /etc/passwx: no such file or directory
    

    Such an error, which includes the problematic file name, the
    operation, and the operating system error it triggered, is useful even
    if printed far from the call that caused it;
    it is much more informative than the plain
    «no such file or directory».

    When feasible, error strings should identify their origin, such as by having
    a prefix naming the operation or package that generated the error. For example, in package
    image, the string representation for a decoding error due to an
    unknown format is «image: unknown format».

    Callers that care about the precise error details can
    use a type switch or a type assertion to look for specific
    errors and extract details. For PathErrors
    this might include examining the internal Err
    field for recoverable failures.

    for try := 0; try < 2; try++ {
        file, err = os.Create(filename)
        if err == nil {
            return
        }
        if e, ok := err.(*os.PathError); ok && e.Err == syscall.ENOSPC {
            deleteTempFiles()  // Recover some space.
            continue
        }
        return
    }
    

    The second if statement here is another type assertion.
    If it fails, ok will be false, and e
    will be nil.
    If it succeeds, ok will be true, which means the
    error was of type *os.PathError, and then so is e,
    which we can examine for more information about the error.

    Panic

    The usual way to report an error to a caller is to return an
    error as an extra return value. The canonical
    Read method is a well-known instance; it returns a byte
    count and an error. But what if the error is
    unrecoverable? Sometimes the program simply cannot continue.

    For this purpose, there is a built-in function panic
    that in effect creates a run-time error that will stop the program
    (but see the next section). The function takes a single argument
    of arbitrary type—often a string—to be printed as the
    program dies. It’s also a way to indicate that something impossible has
    happened, such as exiting an infinite loop.

    // A toy implementation of cube root using Newton's method.
    func CubeRoot(x float64) float64 {
        z := x/3   // Arbitrary initial value
        for i := 0; i < 1e6; i++ {
            prevz := z
            z -= (z*z*z-x) / (3*z*z)
            if veryClose(z, prevz) {
                return z
            }
        }
        // A million iterations has not converged; something is wrong.
        panic(fmt.Sprintf("CubeRoot(%g) did not converge", x))
    }
    

    This is only an example but real library functions should
    avoid panic. If the problem can be masked or worked
    around, it’s always better to let things continue to run rather
    than taking down the whole program. One possible counterexample
    is during initialization: if the library truly cannot set itself up,
    it might be reasonable to panic, so to speak.

    var user = os.Getenv("USER")
    
    func init() {
        if user == "" {
            panic("no value for $USER")
        }
    }
    

    Recover

    When panic is called, including implicitly for run-time
    errors such as indexing a slice out of bounds or failing a type
    assertion, it immediately stops execution of the current function
    and begins unwinding the stack of the goroutine, running any deferred
    functions along the way. If that unwinding reaches the top of the
    goroutine’s stack, the program dies. However, it is possible to
    use the built-in function recover to regain control
    of the goroutine and resume normal execution.

    A call to recover stops the unwinding and returns the
    argument passed to panic. Because the only code that
    runs while unwinding is inside deferred functions, recover
    is only useful inside deferred functions.

    One application of recover is to shut down a failing goroutine
    inside a server without killing the other executing goroutines.

    func server(workChan <-chan *Work) {
        for work := range workChan {
            go safelyDo(work)
        }
    }
    
    func safelyDo(work *Work) {
        defer func() {
            if err := recover(); err != nil {
                log.Println("work failed:", err)
            }
        }()
        do(work)
    }
    

    In this example, if do(work) panics, the result will be
    logged and the goroutine will exit cleanly without disturbing the
    others. There’s no need to do anything else in the deferred closure;
    calling recover handles the condition completely.

    Because recover always returns nil unless called directly
    from a deferred function, deferred code can call library routines that themselves
    use panic and recover without failing. As an example,
    the deferred function in safelyDo might call a logging function before
    calling recover, and that logging code would run unaffected
    by the panicking state.

    With our recovery pattern in place, the do
    function (and anything it calls) can get out of any bad situation
    cleanly by calling panic. We can use that idea to
    simplify error handling in complex software. Let’s look at an
    idealized version of a regexp package, which reports
    parsing errors by calling panic with a local
    error type. Here’s the definition of Error,
    an error method, and the Compile function.

    // Error is the type of a parse error; it satisfies the error interface.
    type Error string
    func (e Error) Error() string {
        return string(e)
    }
    
    // error is a method of *Regexp that reports parsing errors by
    // panicking with an Error.
    func (regexp *Regexp) error(err string) {
        panic(Error(err))
    }
    
    // Compile returns a parsed representation of the regular expression.
    func Compile(str string) (regexp *Regexp, err error) {
        regexp = new(Regexp)
        // doParse will panic if there is a parse error.
        defer func() {
            if e := recover(); e != nil {
                regexp = nil    // Clear return value.
                err = e.(Error) // Will re-panic if not a parse error.
            }
        }()
        return regexp.doParse(str), nil
    }
    

    If doParse panics, the recovery block will set the
    return value to nil—deferred functions can modify
    named return values. It will then check, in the assignment
    to err, that the problem was a parse error by asserting
    that it has the local type Error.
    If it does not, the type assertion will fail, causing a run-time error
    that continues the stack unwinding as though nothing had interrupted
    it.
    This check means that if something unexpected happens, such
    as an index out of bounds, the code will fail even though we
    are using panic and recover to handle
    parse errors.

    With error handling in place, the error method (because it’s a
    method bound to a type, it’s fine, even natural, for it to have the same name
    as the builtin error type)
    makes it easy to report parse errors without worrying about unwinding
    the parse stack by hand:

    if pos == 0 {
        re.error("'*' illegal at start of expression")
    }
    

    Useful though this pattern is, it should be used only within a package.
    Parse turns its internal panic calls into
    error values; it does not expose panics
    to its client. That is a good rule to follow.

    By the way, this re-panic idiom changes the panic value if an actual
    error occurs. However, both the original and new failures will be
    presented in the crash report, so the root cause of the problem will
    still be visible. Thus this simple re-panic approach is usually
    sufficient—it’s a crash after all—but if you want to
    display only the original value, you can write a little more code to
    filter unexpected problems and re-panic with the original error.
    That’s left as an exercise for the reader.

    A web server

    Let’s finish with a complete Go program, a web server.
    This one is actually a kind of web re-server.
    Google provides a service at chart.apis.google.com
    that does automatic formatting of data into charts and graphs.
    It’s hard to use interactively, though,
    because you need to put the data into the URL as a query.
    The program here provides a nicer interface to one form of data: given a short piece of text,
    it calls on the chart server to produce a QR code, a matrix of boxes that encode the
    text.
    That image can be grabbed with your cell phone’s camera and interpreted as,
    for instance, a URL, saving you typing the URL into the phone’s tiny keyboard.

    Here’s the complete program.
    An explanation follows.

    package main
    
    import (
        "flag"
        "html/template"
        "log"
        "net/http"
    )
    
    var addr = flag.String("addr", ":1718", "http service address") 
    
    var templ = template.Must(template.New("qr").Parse(templateStr))
    
    func main() {
        flag.Parse()
        http.Handle("/", http.HandlerFunc(QR))
        err := http.ListenAndServe(*addr, nil)
        if err != nil {
            log.Fatal("ListenAndServe:", err)
        }
    }
    
    func QR(w http.ResponseWriter, req *http.Request) {
        templ.Execute(w, req.FormValue("s"))
    }
    
    const templateStr = `
    <html>
    <head>
    <title>QR Link Generator</title>
    </head>
    <body>
    {{if .}}
    <img src="http://chart.apis.google.com/chart?chs=300x300&cht=qr&choe=UTF-8&chl={{.}}" />
    <br>
    {{.}}
    <br>
    <br>
    {{end}}
    <form action="/" name=f method="GET">
        <input maxLength=1024 size=70 name=s value="" title="Text to QR Encode">
        <input type=submit value="Show QR" name=qr>
    </form>
    </body>
    </html>
    `
    

    The pieces up to main should be easy to follow.
    The one flag sets a default HTTP port for our server. The template
    variable templ is where the fun happens. It builds an HTML template
    that will be executed by the server to display the page; more about
    that in a moment.

    The main function parses the flags and, using the mechanism
    we talked about above, binds the function QR to the root path
    for the server. Then http.ListenAndServe is called to start the
    server; it blocks while the server runs.

    QR just receives the request, which contains form data, and
    executes the template on the data in the form value named s.

    The template package html/template is powerful;
    this program just touches on its capabilities.
    In essence, it rewrites a piece of HTML text on the fly by substituting elements derived
    from data items passed to templ.Execute, in this case the
    form value.
    Within the template text (templateStr),
    double-brace-delimited pieces denote template actions.
    The piece from {{if .}}
    to {{end}} executes only if the value of the current data item, called . (dot),
    is non-empty.
    That is, when the string is empty, this piece of the template is suppressed.

    The two snippets {{.}} say to show the data presented to
    the template—the query string—on the web page.
    The HTML template package automatically provides appropriate escaping so the
    text is safe to display.

    The rest of the template string is just the HTML to show when the page loads.
    If this is too quick an explanation, see the documentation
    for the template package for a more thorough discussion.

    And there you have it: a useful web server in a few lines of code plus some
    data-driven HTML text.
    Go is powerful enough to make a lot happen in a few lines.

    In the last post we looked at fast, primitive encoding using strconv but in this post we’ll take a higher level approach by using templates with the fmt package. The fmt package builds on top of our knowledge of primitive formatting options but packages it in a way that’s easier to use.

    This post is part of a series of walkthroughs to help you understand the standard library better. While generated documentation provides a wealth of information, it can be difficult to understand packages in a real world context. This series aims to provide context of how standard library packages are used in every day applications. If you have questions or comments you can reach me at @benbjohnson on Twitter.

    Important note before we continue

    Before we go any further, I should note that the “fmt” package is pronounced “fumpt”. This surprises a lot of people.

    I know… it sounds ridiculous.

    However, if you get in a conversation with a fellow Gopher and refer to the “format” package or the “ef-em-tee” package then they may give you a blank stare.

    What are templates?

    The key concept in the fmt package is the format template. This is a string that contains the text you want to print plus some placeholders (called verbs) that tell fmt where to insert your variables.

    These format strings are based on C’s printf() so they use a % symbol and a letter to indicate a placeholder. For example, “%s” is a placeholder for a string.

    Verbs

    The Printing section of the fmt godoc has a lengthy explanation of all the options for these verbs but I’ll give a summary of the most useful ones:

    • %v is a generic placeholder. It will automatically convert your variable into a string with some default options. This is typically useful when printing primitives such as strings or numbers and you don’t need specific options.
    • %#v prints your variable in Go syntax. This means you could copy the output and paste it into your code and it’ll syntactically correct. I find this most useful when working with structs and slices because it will print out the types and field names.
    • %T prints your variable’s type. This is really useful for debugging if your data is passed as an interface{} and you want to see what its concrete type.
    • %d prints an integer in base-10. You can do the same with %v but this is more explicit.
    • %x and %X print an integer in base-16. One nice trick though is that you can pass in a byte slice and it’ll print each byte as a two-digit hex number.
    • %f prints a floating point number without an exponent. You can do the same with %v but this becomes more useful when we add width and precision flags.
    • %q prints a quoted string. This is useful when your data may have invisible characters (such as zero width space) because the quoted string will print them as escape sequences.
    • %p prints a pointer address of your variable. This one is really useful when you’re debugging code and you want to check if different pointer variables reference the same data.

    Width & precision

    We can make formatting more useful by adding various flags to the verb. This is especially important for floating-point numbers where you typically need to round them to a specific number of decimal places.

    The precision can be specified by adding a period and a number after the % sign. For example, we can use %.2f to specify two decimal places of precision so formatting 100.567 would print as “100.57”. Note that the second decimal place is rounded.

    The width specifies the total number of characters your formatted string will take up. If your formatted value is less than width then it will pad with spaces. This is useful when you’re printing tabular data and you want fields to line up. For example, we can add to our previous format and set the width to 8 by adding the number before the decimal place: %8.2f. Printing 100.567 with this format will return “••100.57” (where • is a space).

    We can map this out in a table to show how it works for various widths and precisions:

    %8.0f ➡ "     101"
    %8.1f ➡ "   100.6"
    %8.2f ➡ "  100.57"
    %8.3f ➡ " 100.567"

    Left alignment

    In our previous example our values were right-aligned. This works well for financial applications where you may want the decimal places lined up on the right. However, if you want to left-align your fields you can use the “-” flag:

    %-8.0f ➡ "101     "
    %-8.1f ➡ "100.6   "
    %-8.2f ➡ "100.57  "
    %-8.3f ➡ "100.567 "

    Zero padding

    Sometimes you want to pad using zeros instead of spaces. For instance, you may need to generate fixed-width strings from an number. We can use the zero (‘0’) flag to do this. Printing the number 123 with an 8-byte width and padded with zeros looks like this:%08d ➡ «00000123»

    Spacing

    When you print out byte slices using the %x verb it comes out as one giant string of hex numbers. You can delimit the bytes with a space by using the space flag (‘ ‘).

    For example, formatting []byte{1,2,3,4} with and without the space flag:

    %x  ➡ "01020304"
    % x ➡ "01 02 03 04"

    Other verbs & flags

    There are still a bunch more verbs and flags that I didn’t cover and you can read about them in detail in the Printing section of the fmt godoc. The ones I presented here are the ones I use the vast majority of the time.

    Printing

    The primary use of the fmt package is to format strings. These formatting functions are grouped by their output type — STDOUT, io.Writer, & string.

    Each of these groups has 3 functions — default formatting, user-defined formatting, and default formatting with a new line appended.

    Printing to STDOUT

    The most common use of formatting is to print to a terminal window through STDOUT. This can be done with the Print functions:

    func Print(a ...interface{}) (n int, err error)
    func Printf(format string, a ...interface{}) (n int, err error)
    func Println(a ...interface{}) (n int, err error)

    The Print() function simply prints a list of variables to STDOUT with default formatting. The Printf() function allows you to specify the formatting using a format template. The Println() function works like Print() except it inserts spaces between the variables and appends a new line at the end.

    I typically use Printf() when I need specific formatting options and Println() when I want default options. I almost always want a new line appended so I don’t personally use Print() much. One exception is if I am requesting interactive input from a user and I want the cursor immediately after what I print. For example, this line:

    fmt.Print("What is your name? ")

    Will output to the terminal with the cursor immediately after the last space:

    What is your name? █

    Printing to io.Writer

    If you need to print to a non-STDOUT output (such as STDERR or a buffer) then you can use the Fprint functions. The “F” in these functions comes FILE which was the argument type used in C’s fprintf() function.

    func Fprint(w io.Writer, a ...interface{}) (n int, err error)
    func Fprintf(w io.Writer, format string, a ...interface{}) (n int, err error)
    func Fprintln(w io.Writer, a ...interface{}) (n int, err error)

    These functions are just like the Print functions except you specify the writer as the first argument. In fact, the Print functions are just small wrappers around the Fprint functions.

    I typically abstract STDOUT away from my components so I use Fprint functions a lot. For example, if I have a component that logs information then I’ll add a LogOutput field:

    type MyComponent struct {
    	LogOutput io.Writer
    }

    That way I can attach STDOUT when I use it in my application:

    var c MyComponent
    c.LogOutput = os.Stdout

    And I can attach a buffer when I use it in my tests so I can validate it:

    var c MyComponent
    
    var buf bytes.Buffer
    c.LogOutput = &buf
    c.Run()
    
    if strings.Contains(buf.String(), "component finished") {
    	t.Fatalf("unexpected log output: %s", buf.String())
    }

    Formatting to a string

    Sometimes you need to work with strings instead of writers. You could use the the Fprint functions to write to a buffer and convert it to a string but that’s a lot of work. Fortunately there are the Sprint convenience functions:

    func Sprint(a ...interface{}) string
    func Sprintf(format string, a ...interface{}) string
    func Sprintln(a ...interface{}) string

    The “S” here stands for “String”. These functions take the same arguments as the Print() functions except they return a string.

    While these functions are convenient, they can be a bottleneck if you’re frequently generating strings. If you profile your application and find that you need to optimize it then reusing a bytes.Buffer with the Fprint() functions can be much faster.

    Error formatting

    One last formatting function that doesn’t quite fit into the other groups is Errorf():

    func Errorf(format string, a ...interface{}) error

    This is literally just a wrapper for errors.New() and Sprintf():

    func Errorf(format string, a ...interface{}) error {
    	return errors.New(Sprintf(format, a...))
    }

    Scanning

    We can also read our formatted data and parse it back into our original variables. This is called scanning. These are also broken up into similar groups as the printing functions — read from STDIN, read from an io.Reader, and read from a string.

    Disclaimer

    I personally almost never use the scan functions in my applications. Most input for my applications come from CLI flags, environment variables, or API calls. These are typically already formatted as a basic primitives and I can use strconv to parse them. That being said, I’ll do my best to explain these with limited experience.

    Scanning from STDIN

    The basic Scan functions operate on STDIN just as the basic Print functions operate on STDOUT. These also come in 3 types:

    func Scan(a ...interface{}) (n int, err error)
    func Scanf(format string, a ...interface{}) (n int, err error)
    func Scanln(a ...interface{}) (n int, err error)

    The Scan() function reads in space-delimited values into variables references passed into the function. It treats newlines as spaces. The Scanf() does the same but lets you specify formatting options using a format string. The Scanln() function works Scan() except that it does not treat newlines as spaces.

    For example, you can use Scan() to read in successive values:

    var name string
    var age int
    
    if _, err := fmt.Scan(&name, &age); err != nil {
    	fmt.Println(err)
    	os.Exit(1)
    }
    
    fmt.Printf("Your name is: %sn", name)
    fmt.Printf("Your age is: %dn", age)

    You can run this in your main() function and execute:

    $ go run main.go
    Jane 25
    Your name is: Jane
    Your age is: 25

    Again, these functions aren’t terribly useful because you will likely pass in data via flags, environment variables, or configuration files.

    Scanning from io.Reader

    You can use the Fscan functions to scan from a reader besides STDIN:

    func Fscan(r io.Reader, a ...interface{}) (n int, err error)
    func Fscanf(r io.Reader, format string, a ...interface{}) (n int, err error)
    func Fscanln(r io.Reader, a ...interface{}) (n int, err error)

    Scanning from a string

    Finally, you can use the Sscan functions to scan from an in-memory string:

    func Sscan(str string, a ...interface{}) (n int, err error)
    func Sscanf(str string, format string, a ...interface{}) (n int, err error)
    func Sscanln(str string, a ...interface{}) (n int, err error)

    Stringers

    Go has a style convention where the names of interfaces are created by taking the name of the interface’s function and adding “er”. Because of this convention we get funny names like Stringer.

    The Stringer interface allows objects to handle how they convert themselves into a human readable format:

    type Stringer interface {
    	String() string
    }

    This is used all over the place in the standard library such as net.IP.String() or bytes.Buffer.String(). This format is used when using the %s formatting verb or when passing a variable into Print().

    Formatting to Go

    There is also a related interface called GoStringer which allows objects to encode themselves in Go syntax.

    type GoStringer interface {
    	GoString() string
    }

    This is used when the “%#v” verb is used in print functions. It’s uncommon to need to use this interface since the default implementation of that verb usually gives a good representation.

    User-defined types

    One of the more obscure parts of the fmt package is in user-defined formatter and scanner types. These give you full control over how an object gets formatted or scanned when using the Printf and Scanf functions.

    Formatters

    Custom formatters can be added to your types by implementing fmt.Formatter:

    type Formatter interface {
    	Format(f State, c rune)
    }

    The Format() function accepts a State object which lists the options specified in the verb associated with your variable. This includes the width, precision, and other flags. The c rune specifies the character used in the verb.

    Concrete example

    A concrete example will make more sense. Honestly, I couldn’t think of a good example of when to use this so we’ll make a silly one. Let’s say we have a Header type that is simply text that we want to be able to decorate using characters before and after. Here’s our example usage:

    hdr := Header(“GO WALKTHROUGH”)
    fmt.Printf(“%2.3sn”, hdr)

    Here we’re just printing hdr with the verb “%2.3s” meaning that we want 2 characters before the header and 3 characters after. Just for fun we’ll use “#” before the text and snowmen (☃) after the text. I know… dumb example but bear with me.

    Here’s our Header type with its custom Formatter implementation:

    // Header represents formattable header text.
    type Header string
    
    // Format decorates the header with pounds and snowmen.
    func (hdr Header) Format(f fmt.State, c rune) {
    	wid, _ := f.Width()
    	prec, _ := f.Precision()
    	f.Write([]byte(strings.Repeat("#", wid)))
    	f.Write([]byte(hdr))
    	f.Write([]byte(strings.Repeat("☃", prec)))
    }

    In our Format() function we’re extracting the width and precision from the verb (2 & 3, respectively) and then printing back into the State object. This will get written to our Printf() output.

    You can run this example here and see the following output:

    ##GO WALKTHROUGH☃☃☃

    Inside the standard library the formatter is used for special math types such as big.Float & big.Int. Those seem like legitimate use cases but I really can’t think of another time to use this.

    Scanners

    On the scanning side there is a Scanner interface:

    type Scanner interface {
    	Scan(state ScanState, verb rune) error
    }

    This works similarly to the Formatter except that you’re reading from your state instead of writing to it.

    Review

    Let’s review some of the do’s and don’ts of using the fmt package:

    • Do pronounce the package as “fumpt”!
    • Do use the %v placeholder if you don’t need formatting options.
    • Do use the width & precision formatting options — especially for floating-point numbers.
    • Don’t use Scan functions in general. There’s probably a better method of user input.
    • Do define String() functions on your types if the default implementation isn’t useful.
    • Don’t use custom formatters & scanners. There’s not a lot of good use cases unless you’re implementing mathematical types.
    • Don’t use fmt if you’ve found it to be a performance bottleneck. Drop down to strconv when you need to optimize. However, only do this after profiling!

    Conclusion

    Printing output into a human readable format is a key part of any application and the fmt package makes it easy to do. It provides a variety of formatting options and verbs depending on the type of data you’re displaying. It also provides scanning functions and custom formatting if you ever happen to need that.

    yourbasic.org/golang

    Letter tiles forming the word format

    • Basics
      • Printf
      • Sprintf (format without printing)
      • Find fmt errors with vet
    • Cheat sheet
      • Default formats and type
      • Integer (indent, base, sign)
      • Character (quoted, Unicode)
      • Boolean (true/false)
      • Pointer (hex)
      • Float (indent, precision, scientific notation)
      • String or byte slice (quote, indent, hex)
      • Special values

    Basics

    With the Go fmt package
    you can format numbers and strings padded with spaces or zeroes,
    in different bases, and with optional quotes.

    You submit a template string that contains the text you want to format
    plus some annotation verbs that tell the fmt functions
    how to format the trailing arguments.

    Printf

    In this example, fmt.Printf formats and writes to standard output:

    fmt.Printf("Binary: %b\%b", 4, 5) // Prints `Binary: 100101`
    
    • the template string is "Binary: %b\%b",
    • the annotation verb %b formats a number in binary, and
    • the special value \ is a backslash.

    As a special case, the verb %%, which consumes no argument, produces a percent sign:

    fmt.Printf("%d %%", 50) // Prints `50 %`

    Sprintf (format without printing)

    Use fmt.Sprintf
    to format a string without printing it:

    s := fmt.Sprintf("Binary: %b\%b", 4, 5) // s == `Binary: 100101`

    Find fmt errors with vet

    If you try to compile and run this incorrect line of code

    fmt.Printf("Binary: %b\%b", 4) // An argument to Printf is missing.
    

    you’ll find that the program will compile, and then print

    Binary: 100%!b(MISSING)

    To catch this type of errors early, you can use
    the vet command – it can find
    calls whose arguments do not align with the format string.

    $ go vet example.go
    example.go:8: missing argument for Printf("%b"): format reads arg 2, have only 1 args
    

    Cheat sheet

    Default formats and type

    • Value: []int64{0, 1}
    Format Verb Description
    [0 1] %v Default format
    []int64{0, 1} %#v Go-syntax format
    []int64 %T The type of the value

    Integer (indent, base, sign)

    • Value: 15
    Format Verb Description
    15 %d Base 10
    +15 %+d Always show sign
    ␣␣15 %4d Pad with spaces (width 4, right justified)
    15␣␣ %-4d Pad with spaces (width 4, left justified)
    0015 %04d Pad with zeroes (width 4)
    1111 %b Base 2
    17 %o Base 8
    f %x Base 16, lowercase
    F %X Base 16, uppercase
    0xf %#x Base 16, with leading 0x

    Character (quoted, Unicode)

    • Value: 65   (Unicode letter A)
    Format Verb Description
    A %c Character
    ‘A’ %q Quoted character
    U+0041 %U Unicode
    U+0041 ‘A’ %#U Unicode with character

    Boolean (true/false)

    Use %t to format a boolean as true or false.

    Pointer (hex)

    Use %p to format a pointer in base 16 notation with leading 0x.

    Float (indent, precision, scientific notation)

    • Value: 123.456
    Format Verb Description
    1.234560e+02 %e Scientific notation
    123.456000 %f Decimal point, no exponent
    123.46 %.2f Default width, precision 2
    ␣␣123.46 %8.2f Width 8, precision 2
    123.456 %g Exponent as needed, necessary digits only

    String or byte slice (quote, indent, hex)

    • Value: "café"
    Format Verb Description
    café %s Plain string
    ␣␣café %6s Width 6, right justify
    café␣␣ %-6s Width 6, left justify
    «café» %q Quoted string
    636166c3a9 %x Hex dump of byte values
    63 61 66 c3 a9 % x Hex dump with spaces

    Special values

    Value Description
    a U+0007 alert or bell
    b U+0008 backspace
    \ U+005c backslash
    t U+0009 horizontal tab
    n U+000A line feed or newline
    f U+000C form feed
    r U+000D carriage return
    v U+000b vertical tab

    Arbitrary values can be encoded with backslash escapes and
    can be used in any "" string literal.

    There are four different formats:

    • x followed by exactly two hexadecimal digits,
    • followed by exactly three octal digits,
    • u followed by exactly four hexadecimal digits,
    • U followed by exactly eight hexadecimal digits.

    The escapes u and U represent Unicode code points.

    fmt.Println("\cafu00e9") // Prints café
    

    Further reading

    40+ practical string tips [cheat sheet]

    Share this page:  
       
       

    Понравилась статья? Поделить с друзьями:
  • Golang package error
  • Golang new error handling
  • Glowstorm gta 5 как исправить
  • Glow storm gta 5 как исправить
  • Glow device general error