Go에서는 부동 소수점 숫자를 문자열로 변환하는 여러 가지 방법이 있습니다. 널리 사용되는 두 가지 선택에는 fmt.Sprintf() 및 strconv.FormatFloat()가 있습니다. 각 접근 방식에는 미묘한 차이가 있지만 궁극적으로 동일한 기본 문자열 형식 지정 메커니즘을 활용합니다.
fmt.Sprintf()와 strconv.FormatFloat() 중에서 결정할 때 다음을 고려하세요. 다음:
구문:
func Sprintf(format string, a ...interface{}) string
사용법:
fResult := 123.456 sResult := fmt.Sprintf("%.2f", fResult) // Format the number to two decimal places
구문:
func FormatFloat(f float64, fmt byte, prec, bitSize int) string
사용법:
fResult := float64(123.456) sResult := strconv.FormatFloat(fResult, 'f', 2, 32) // Format the number to two decimal places, assuming it's a float64
strconv.FormatFloat()의 bitSize 매개변수는 반올림 수행 방법을 제어합니다. 원래 부동 소수점 값에 지정된 비트 크기(float32의 경우 32, float64의 경우 64)가 있다고 가정합니다. 올바른 bitSize를 지정하면 입력의 실제 데이터 유형에 맞게 반올림 동작이 최적화됩니다.
위 내용은 Go에서 부동 소수점 숫자 형식을 지정하는 방법: fmt.Sprintf()와 strconv.FormatFloat()?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!