因为每次用到while循环,都会出现一些小问题,老是多加一个“:”
特此记录一个简单的例子:
[root@zfl-ceshi tmp]# cat tt.sh
#!/bin/bash
while true
do
echo "1223333"
sleep 0.5
done
[root@zfl-ceshi tmp]#
zhangjf5050 ©著作权
因为每次用到while循环,都会出现一些小问题,老是多加一个“:”
特此记录一个简单的例子:
[root@zfl-ceshi tmp]# cat tt.sh
#!/bin/bash
while true
do
echo "1223333"
sleep 0.5
done
[root@zfl-ceshi tmp]#
一,while语句和do…while语句private void whileMethod() {int x=1;while(x<3){System.out.println("while语句:"+x);x++;}}private void doWhileMethod() {int x=1;do{System.out.println("while语句:"+x);x++;
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M