Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Yet another beginner's question for golang:

I can write:

for i := 0; i < 10; i++ {}

But if I want i to be of a specific type as int64, apparently I am not supposed to write:

for var i int64 = 0; i < 10; i++ {}

I am surprised that I cannot specify a type in the start statement of the for loop. I need to write something like this:

var i int64
for i = 0; i < 10; i++ {}

Am I missing a point here? Is there any explanation for it?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...