美文网首页
无限循环

无限循环

作者: NextStepPeng | 来源:发表于2017-11-28 09:30 被阅读0次

    while :
    do
    echo "hello"
    done

    2、

    while true

    do

    echo "hello"

    done

    3、

    for((;;))

    do

    echo "hello"

    done

    相关文章

      网友评论

          本文标题:无限循环

          本文链接:https://www.haomeiwen.com/subject/wpksbxtx.html