参考自http://codingstandards.iteye.com/blog/780524

1.while true
do
command;
done
2.while :
do
command;
done
3.while [1]
do
command;
done
4.while [0]
do
command
done
5.while 条件
do
command;
done

 

相关文章:

  • 2022-01-18
  • 2021-06-03
  • 2021-09-12
  • 2021-09-19
  • 2021-07-18
  • 2021-07-25
猜你喜欢
  • 2022-12-23
  • 2022-02-25
  • 2022-01-06
  • 2021-08-30
  • 2021-09-16
  • 2021-06-27
相关资源
相似解决方案