Skip to content

Instantly share code, notes, and snippets.

@sayotte
Created January 30, 2019 16:29
Show Gist options
  • Save sayotte/450e5105f5004487646f84b3dc48e910 to your computer and use it in GitHub Desktop.
Save sayotte/450e5105f5004487646f84b3dc48e910 to your computer and use it in GitHub Desktop.
Nil-assignment gotcha
package main
import (
"fmt"
)
type Fooer interface {
Foo()
}
type X struct{}
func (x X) Foo() { return }
func getNilX() *X {
return nil
}
func main() {
var fooer Fooer
fooer = getNilX()
if fooer == nil {
fmt.Println("fooer DOES == nil")
} else {
fmt.Printf("fooer != nil: %v\n", fooer)
// we hit this because an interface variable stores both a type and a value
// fooer, right now, has been assigned something like:
// struct {
// typ: reflect.Type
// val: reflect.Value
// } {
// type: reflect.TypeOf(&X{}),
// val: *X(nil),
// }
// So while the VALUE is nil, the variable 'fooer' itself is non-nil.
}
}
fooer != nil: <nil>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment