Can someone tell me why this works:
s := time.Hour/73.0
fmt.Println("sleeping: ", s)
time.Sleep(s)
But this fails:
d := 73.0
s := time.Hour/d
fmt.Println("sleeping: ", s)
time.Sleep(s)
This is the error:
invalid operation: time.Hour / d (mismatched types time.Duration and float64)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…