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

Categories

0 votes
1.9k views
in Technique[技术] by (71.8m points)

go - variable declaration in init statement of for loop

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...