Golang数据结构

数据类型
不同类型的内存样式图

append,切片添加元素
清空切片的3种方法
清空切片的2种方法

查看变量类型

使用 fmt.Printf

package main

import "fmt"

func main() {
  str := "Hello world"
  fmt.Printf("%T", str)
}

使用 reflect.TypeOf

package main

import (
  "fmt"
  "reflect"
)

func main() {
  str := "Hello world"
  fmt.Println(reflect.TypeOf(str))
}

switch

只适用于 switch 语句,而且变量必须是interface类型

package main

import "fmt"

var str interface{}
str = "Hello world"

switch str.(type) {
  case string:
    fmt.Println("string")
  case int:
    fmt.Println("int")
  default:
    fmt.Println("other)
}

Reference

posted @ 2023-02-19 16:34  0x7F  阅读(21)  评论(0编辑  收藏  举报