Ben Chuanlong Du's Blog

It is never too late to learn.

Loop in Golang

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Loops in Java

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

  1. The condition(s) in a regular for or while loop is recomputed before each iteration. Not only the change of loop variables but also other variables involved in the loop condition …