Golang-Schnittstellentyp

Oberflächentyp

main.go


package main

import (
    "fmt"
)

func main() {
    var x interface{}
    fmt.Printf("%#v", x)
}

Bei der Ausgabe wird es zu . 0 wird als Anfangswert im Typ int festgelegt, im Schnittstellentyp jedoch als Null.

$ go run main.go 
<nil>

Recommended Posts

Golang-Schnittstellentyp
Wörterbuchtyp 2
Wörterbuchtyp 1
Golang-Profilerstellung