ThatManK Mobile Article

float

Category: Go Tutorial: Go初级 Published: 2026-04-07 13:58 Views: 21 Likes: 0 Comments: 0
package main

import "fmt"

func main() {
    n1 := 1.2345
    fmt.Printf("%T\n", n1) // float64, go 默认小数都是 float64 类型
}