5.5 Go语言中的类型转换

Posted 孙琦Ray

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.5 Go语言中的类型转换相关的知识,希望对你有一定的参考价值。

类型转换关系

From b []byte i []int r []rune s string f float32/float64 i int
To
[]byte · []byte(s)
[]int · []int(s)
[]rune []rune(s)
string string(b) string(i) string® ·
float32 · float32(i)
int int(f) ·

示例:类型转换测试

package main

import</

以上是关于5.5 Go语言中的类型转换的主要内容,如果未能解决你的问题,请参考以下文章

go判断interface类型及类型转换

Go教程类型转换

Go教程类型转换

go(golang)中的类型转换

Golang关于Go中的类型转换

GO语言学习(十七)Go 语言类型转换