一、for循环

  1. 普通的for循环

image.png

  1. for-in循环

image.png
注:List和Set可以使用for-in循环,Map不可以

  1. forEach 循环
    1. List的forEach循环

image.png

  1. Set的forEach循环

image.png

  1. Map的forEach循环

image.png
Map的forEach循环中,函数参数中有两个参数。

二、while循环

image.png

三、do-while循环

image.png