Go 또는 Golang에서 int 유형 값을 float 유형 값으로 변환하는 방법은 무엇입니까?

3356 단어 go
Originally posted here!

Go 또는 Golang에서 int 유형 값을 float 유형 값으로 변환하려면 할당해야 하는 크기에 따라 float32() 또는 float64() 내장 함수를 사용할 수 있습니다.

예를 들어 int3000 값을 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`
}


위의 코드에서 볼 수 있듯이 int3000 유형 값이 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`
}


위의 코드에서 볼 수 있듯이 int3000 유형 값이 float64 유형 값으로 변환됩니다.

참고: Go의 유형에 대해 자세히 알아보려면 What are the basic types in Go or Golang? 블로그를 참조하세요.

The Go Playground에 있는 위의 코드를 참조하십시오.

그게 다야 😃!

이 정보가 유용하다고 생각되면 자유롭게 공유하세요 😃.

좋은 웹페이지 즐겨찾기