首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

break与continue在终止循环作用下的区别

2012-12-25 
break与continue在终止循环作用上的区别在此之前对break和continue对于终止循环的作用理解的一直不是很好,

break与continue在终止循环作用上的区别
在此之前对break和continue对于终止循环的作用理解的一直不是很好,今天通过对JS的学习终于搞明白了其原理。下面是我的理解:
Break: 命令可以终止循环的运行,然后继续执行循环之后的代码(如果循环之后有代码的话)。
实例:

<html>
<body>
<script type="text/javascript">
var i=0
for (i=0;i<=10;i++)
{
if (i==3){break}
document.write("The number is " + i)
document.write("<br />")
}
</script>
</body>
</html>

结果:

The number is 0
The number is 1
The number is 2

Continue:命令会终止当前的循环,然后从下一个值继续运行。
实例:

<html>
<body>
<script type="text/javascript">
var i=0
for (i=0;i<=10;i++)
{
if (i==3){continue}
document.write("The number is " + i)
document.write("<br />")
}
</script>
</body>
</html>

结果:

The number is 0
The number is 1
The number is 2
The number is 4
The number is 5
The number is 6
The number is 7
The number is 8
The number is 9
The number is 10

热点排行