OSDN Git Service

:pencil2: add details of continue
authorouuan <y___o___u@126.com>
Wed, 4 Sep 2019 00:08:15 +0000 (08:08 +0800)
committerouuan <y___o___u@126.com>
Wed, 4 Sep 2019 00:08:15 +0000 (08:08 +0800)
docs/lang/loop.md

index 76763ec..4656c40 100644 (file)
@@ -135,7 +135,7 @@ for (;;) {
 
 break 语句的作用是退出循环。
 
-continue 语句的作用是跳过循环体的余下部分,回到循环的开头。
+continue 语句的作用是跳过循环体的余下部分,回到循环的开头(for 语句的更新,while 语句的判断条件)
 
 ```cpp
 for (int i = 1; i <= 10; ++i) {