golang:for循环

  golang中只有一種循環結構——for循环,for循環有以下機種使用方式:
  • init statementcondition statementpost statement組成
for i := 0; i < 10; i++ {
    // statement 
}
  • condition statementpost statement組成
for ; i < 10; i++ {
    // statement
}
  • condition statement組成
// 帶有分號的表示方式
for ; i < 10; {
    // statement
}

// 另一種表示方式,像C中while循環
for i < 10 {
    // statement
}
  • 無限循環
for {
    // statement
}

你可能感兴趣的:(golang:for循环)