break和continue的区别
一、读音不同
break 英[breɪk] 美[breɪk]
continue 英[kənˈtɪnjuː] 美[kənˈtɪnjuː]
二、释义不同
break
v. 打破; (使)破,裂,碎; 弄坏; 损坏; 坏掉; 弄破; 使流血; 违犯; 稍停; 打断; 强行终止; 终止;
n. 休息; 间歇; 课间休息; 间断; 暂停; 插播广告的间隙;
continue
v. 持续; 继续存在; 不断发生; 继续做; 不停地干; (朝相同方向)走,移动; 延伸; 留任;
三、词形变化不同
break第三人称单数:breaks 现在分词:breaking 过去式:broke 过去分词:broken
continue第三人称单数:continues 现在分词:continuing 过去式:continued 过去分词:continued
四、用法不同
break既可以是动词,也可以是名词,当其为动词时,意思有“打破,打碎,破坏,摆脱”等,当其为名词时,意思是“间歇,休息”,例如:
1、She had broken the world 100 metres record. 她打破了100米世界纪录。
2、Come and see me at break. 课间休息时来见我。
continue是动词,没有名词的词性,有“持续,继续存在,不断发生”等含义,当其后接动词时,通常使用动词不定式,即to+动词原形的形式,例如:
1、The trial is expected to continue for three months.
预计审判要持续三个月。
2、The pressure for change continued to mount.
改革的呼声持续高涨。
五、双语例句
break
1、They must break out of the cycle of violence.
他们必须打破暴力循环。
2、He needed to make a complete break with the past.
他得与过去彻底告别。
3、They decided to make a break for it that night.
他们决定那天晚上逃跑。
4、It was her second break in the set.
这是本盘比赛中她第二次接发球得分。
5、If they entered the building they would be breaking the law.
如果进入那栋大楼,他们就会触犯法律。
continue
1、Sales figures continue to show signs of improvement.
销售额持续显示出增加的迹象。
2、Her decision to continue shows great strength of will.
她决心坚持下去,显示出了很大的意志力。
3、The class needs a minimum of six students to continue.
这个班最少需要六名学生才可以继续办下去。
4、Problems at work continued to occupy his mind for some time.
工作上的问题继续在他的脑海中萦绕了一段时间。
5、Are you going to continue with the project?
你要继续做这个项目吗?
break属动词,原意为打断,断开的意思。引申为中断,终止的涵义。
continue属副词,意为连续,持续的意思,一般加介词修饰动词或动名词。
区别1.
continue只能用在for,while,do…while等循环中。
break除了能在以上循环中使用,还能在switch内使用。
通常与if条件语句一起使用,用来减少不必要的循环次数,提高代码的运行速度。
区别2.
continue是结束本次循环而强制开始下一次循环,并没有结束整个循环。
break是结束整个循环体,然后执行循环体外的语句;如果是在嵌套循环(即多个循环体层层包含)中,则只结束break所在的循环体,执行下一个循环体中的循环语句
break常用解释为打破,continue常用解释为连续。:break指的是终止、结束循环;continue指的是本次的循环,进入下一次的循环。二者互为反义词。