Heim  >  Fragen und Antworten  >  Hauptteil

for循环是不是和do while循环一样都是先执行?

橱窗的光橱窗的光2883 Tage vor1276

Antworte allen(2)Ich werde antworten

  • 数据分析师

    数据分析师2017-09-30 22:44:07

    for循环是不是和do while循环一样都是先执行?-PHP中文网问答-for循环是不是和do while循环一样都是先执行?-PHP中文网问答

    围观一下哦,学习一下。

    Antwort
    0
  • 迷茫

    迷茫2016-12-17 13:42:37

    for(表达式1;表达式2;表达式3){

    循环代码

    }

    先执行表达式1和表达式2 ,再到表达3去判断

    do{

    循环代码

    }while(条件)

    而do while 则是先执行一次,到while时在判断


    Antwort
    1
  • StornierenAntwort