Skip to content

Latest commit

 

History

History
51 lines (44 loc) · 3.28 KB

README.md

File metadata and controls

51 lines (44 loc) · 3.28 KB

#Notes on Golang

Starting points

Cheat Sheet

Stray observations

  • Need to understand this $GOPATH variable

  • Exported names in packages begin with a capital letter, unexported names are lowercase (unexported means inaccessible/private)

  • For functions, type comes after variable name

  • print type: fmt.Printf("x is of type %T\n", x)

  • Short assignment seems interesting and a possible minefield for me: := with more notes here

  • Read up more on defer in this blog post

  • Array size must be set with declaration and its size is constant and part of its type

  • Slice literal is like an array literal without the length (don't have to specify length in the declaration)

  • Slice has both a length (number of elements in the slice) and a capacity (number of elements in the underlying array counting from the first element in the slice)

    length := len(s)
    capacity := cap(s)
    
  • What is make?

  • Slice capacity with odd numbers of elements differs from capacity with even numbers of elements and another explanation here

  • You can only declare a method with a receiver whose type is defined in the same package as the method. You cannot declare a method with a receiver whose type is defined in another package (which includes the built-in types such as int).

  • Pointer receivers vs. value receivers?

  • Interface is a tuple of (value, type)

  • A nil interface value holds neither value nor concrete type.

  • The interface type that specifies zero methods is known as the empty interface: interface{}. An empty interface may hold values of any type. (Every type implements at least zero methods.) Empty interfaces are used by code that handles values of unknown type. For example, fmt.Print takes any number of arguments of type interface{}.

  • Only the sender should close a channel, never the receiver. Sending on a closed channel will cause a panic.

  • Channels aren't like files; you don't usually need to close them. Closing is only necessary when the receiver must be told there are no more values coming, such as to terminate a range loop.

  • The select statement lets a goroutine wait on multiple communication operations. A select blocks until one of its cases can run, then it executes that case. It chooses one at random if multiple are ready.

  • The default case in a select is run if no other case is ready. Use a default case to try a send or receive without blocking:

select {
case i := <-c:
	// use i
default:
	// receiving from c would block
}
  • This is more notes

Extra resources

Here is a great list of Go learning resources