Go 또는 Golang에서 int 유형 값을 float 유형 값으로 변환하는 방법은 무엇입니까?
3356 단어 go
Go 또는 Golang에서
int
유형 값을 float
유형 값으로 변환하려면 할당해야 하는 크기에 따라 float32()
또는 float64()
내장 함수를 사용할 수 있습니다.예를 들어
int
의 3000
값을 float
유형 값으로 변환해야 한다고 가정해 보겠습니다.float32 유형으로 변환
32-bit
크기만 할당해야 하므로 float32()
내장 함수를 사용하고 int
값을 다음과 같이 함수의 인수로 전달할 수 있습니다.package main
import "fmt"
func main() {
// an `int` type value
intNum := 3000
// convert `int` to `float32`
// using the `float32()` function
float32Num := float32(intNum)
// log to the console
fmt.Println(float32Num) // 3000 and the type is `float32`
}
위의 코드에서 볼 수 있듯이
int
의 3000
유형 값이 float32
유형 값으로 변환됩니다.float64 유형으로 변환
64-bit
크기를 할당해야 하는 경우 다음과 같이 float64()
내장 함수를 사용하고 int
값을 함수의 인수로 전달할 수 있습니다.package main
import "fmt"
func main() {
// an `int` type value
intNum := 3000
// convert `int` to `float64`
// using the `float64()` function
float64Num := float64(intNum)
// log to the console
fmt.Println(float64Num) // 3000 and the type is `float64`
}
위의 코드에서 볼 수 있듯이
int
의 3000
유형 값이 float64
유형 값으로 변환됩니다.참고: Go의 유형에 대해 자세히 알아보려면 What are the basic types in Go or Golang? 블로그를 참조하세요.
The Go Playground에 있는 위의 코드를 참조하십시오.
그게 다야 😃!
이 정보가 유용하다고 생각되면 자유롭게 공유하세요 😃.
Reference
이 문제에 관하여(Go 또는 Golang에서 int 유형 값을 float 유형 값으로 변환하는 방법은 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/melvin2016/how-to-convert-an-int-type-value-to-any-float-type-value-in-go-or-golang-22kf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)