go学习笔记
基础
go 定义变量的几种方式
常量的声明
go基本数据类型
go语言中的流程控制
golang中的数组
切片
golang中的map 详解
golang 函数详解
内置函数 panic/recover
golang time包 以及日志函数
golang中的指针
golang 中的结构体
Golang 结构体 和 json互相转换 序列化 反序列化
Golang 中的 go mod 以及 Golang包 详解
golang 中的接口
golang goroutine channel 实现并发 和 并行
channel
goroutine 互斥锁 读写互斥锁
golang 反射
golang 标准库
io
strconv
工具 + blog
进程 线程 协程
空接口 类型断言
为Go项目编写Makefile
减小 Go 代码编译后的二进制体积
go windows下编译linux可执行文件
本文档使用 MrDoc 发布
-
+
首页
空接口 类型断言
类型断言 例子: ``` func main() { //定义一个空接口 为字符串 hello var i interface{} = "hello" s, ok := i.(string) // interface.(类型) 返回值 和 bool if ok { log.Println(s) } f, ok1 := i.(float32) log.Println(ok1) //2023/05/22 01:56:05 false log.Println(f) //2023/05/22 01:56:05 0 } ``` 使用switch 判断 interface type ``` func main() { //定义一个空接口 为字符串 hello var i interface{} = "hello" switch i.(type) { case int: fmt.Println("int type") case float32: fmt.Println("float type") case string: fmt.Println("string type") } } ```
admin
2023年5月22日 03:00
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
Markdown文件
分享
链接
类型
密码
更新密码