本篇内容主要讲解“Golang有类型常量和无类型常量的区别是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Golang有类型常量和无类型常量的区别是什么”吧!
在 Go 语言中,常量分为有类型常量和无类型常量。
// 有类型常量 const VERSION string = "v1.0.0" // 无类型常量 const RELEASE = 3
当你把有无类型的常量,赋值给一个变量的时候,无类型的常量会被隐式的转化成对应的类型。
package main import "fmt" func main() { const RELEASE = 3 var x int16 = RELEASE var y int32 = RELEASE fmt.Printf("type: %T \n", x) //type: int16 fmt.Printf("type: %T \n", y) //type: int32 }
可要是有类型常量,不就会进行转换,在赋值的时候,类型检查就不会通过,从而直接报错。
package main import "fmt" func main() { const RELEASE int8 = 3 var x int16 = RELEASE //cannot use RELEASE (type int8) as type int16 in assignment var y int32 = RELEASE //cannot use RELEASE (type int8) as type int32 in assignment fmt.Printf("type: %T \n", x) fmt.Printf("type: %T \n", y) }
解决的方法是进行显式的转换。
package main import "fmt" func main() { const RELEASE int8 = 3 var x int16 = int16(RELEASE) var y int32 = int32(RELEASE) fmt.Printf("type: %T \n", x) // type: int16 fmt.Printf("type: %T \n", y) // type: int32 }
到此,相信大家对“Golang有类型常量和无类型常量的区别是什么”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。