Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> 實例解釋continue break的區別

實例解釋continue break的區別

日期:2017/2/7 14:38:15      編輯:Linux教程
 

執行下面的shell,就能很明了的區別break和continue的差異了: 

[ckl@zhao-test tmp]$ cat test.sh 

#!/bin/bash

for index in 1 2 3 4 5 6 7 8 9 10 

do

if [ $index -le 3 ] ; 

then echo "continue" 

continue 

fi 

echo $index 

if [ $index -ge 8 ] ; 

then echo "break" 

break 

fi

done 

你試試?

Copyright © Windows教程網 All Rights Reserved