Go 숫자 상수

Jmnote (토론 | 기여)님의 2020년 7월 20일 (월) 13:13 판 (새 문서: ==개요== ;Numeric Constants ;Go 숫자 상수 <source lang='go' run> package main import "fmt" const ( // Create a huge number by shifting a 1 bit left 100 places. // In other...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

Numeric Constants
Go 숫자 상수
package main

import "fmt"

const (
	// Create a huge number by shifting a 1 bit left 100 places.
	// In other words, the binary number that is 1 followed by 100 zeroes.
	Big = 1 << 100
	// Shift it right again 99 places, so we end up with 1<<1, or 2.
	Small = Big >> 99
)

func needInt(x int) int { return x*10 + 1 }
func needFloat(x float64) float64 {
	return x * 0.1
}

func main() {
	fmt.Println(needInt(Small))
	fmt.Println(needFloat(Small))
	fmt.Println(needFloat(Big))
}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}