Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 314 Bytes

016. Casting.md

File metadata and controls

14 lines (13 loc) · 314 Bytes

형변환(Casting)

형변환

CASTING_TYPE(VALUE)

Go에서는 같은 타입이 아닐 때 산술 연산을 할 수 없기 때문에
부동 소수점과 정수간의 산술 연산시 형변환이 필수입니다.

const PI = 3.14
r := 5
fmt.Println(PI * float64(r * r))
// 78.5