[Talking-Golang (Go)] Type Assertions and Type Twitches

Type Assertions and Type Twitches

Type Assertions

A type assertion provides access to an interface value’s underlying concrete value.

1
t := i.(T)

This statement asserts that the interface value i holds the concrete type T and assigns the underlying T value to the variable t.

If i does not hold a T, the statement will trigger a panic.

To test whether an interface value holds a specific type, a type assertion can return two values: the underlying value and a boolean value that reports whether the assertion succeeded.

1
t, ok := i.(T)

If i holds a T, then t will be the underlying value and ok will be true.

If not, ok will be false and t will be the zero value of type T, and no panic occurs.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package main

import "fmt"

func main() {
var i interface{} = "hello"

s := i.(string)
fmt.Println(s)

s, ok := i.(string)
fmt.Println(s, ok)

f, ok := i.(float64)
fmt.Println(f, ok)

f = i.(float64) // panic
fmt.Println(f)
}

Note the similarity between this syntax and that of reading from a map.

1
2
3
if v, ok := m["key"]; ok {

}

Type Twitches

A type switch is a construct that permits several type assertions in series.

A type switch is like a regular switch statement, but the cases in a type switch specify types (not values), and those values are compared against the type of the value held by the given interface value.

switch v := i.(type) {
case T:
// here v has type T
case S:
// here v has type S
default:
// no match; here v has the same type as i
}
The declaration in a type switch has the same syntax as a type assertion i.(T), but the specific type T is replaced with the keyword type.

This switch statement tests whether the interface value i holds a value of type T or S. In each of the T and S cases, the variable v will be of type T or S respectively and hold the value held by i. In the default case (where there is no match), the variable v is of the same interface type and value as i.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package main

import "fmt"

func do(i interface{}) {
switch v := i.(type) {
case int:
fmt.Printf("Twice %v is %v\n", v, v*2)
case string:
fmt.Printf("%q is %v bytes long\n", v, len(v))
default:
fmt.Printf("I don't know about type %T!\n", v)
}
}

func main() {
do(21)
do("hello")
do(true)
}

References

[1] Type assertions | A Tour of Go - https://tour.golang.org/methods/15

[2] Type switches | A Tour of Go - https://tour.golang.org/methods/16

[3] Type Assertions vs Type Conversions in Golang - https://www.sohamkamani.com/golang/type-assertions-vs-type-conversions/

[4] Explain Type Assertions in Go - Stack Overflow - https://stackoverflow.com/questions/38816843/explain-type-assertions-in-go

[5] Type assertions and type switches · YourBasic Go - https://yourbasic.org/golang/type-assertion-switch/