欢迎光临
我们一直在努力

asp如何跳出本次进入下一次循环_asp技巧

建站超值云服务器,限时71元/月

看下面的Java代码,目的是为了当i是3的时候,就不做输出,直接跳到下一个循环。


        int i = 0;
        while (i < 5) …{
            i++;
            if (i == 3) …{
                continue;
            }
            System.out.println(“Im not 3, Im ” + i);
            // Do something else…
        }
 然而在ASP (VB) 应该怎么写呢?不少人就犯难了。在此,我给出些答案供参考,还往多多指教!


    i = 0
    Do While (i < 5)
        If (i <> 3) Then
            MsgBox “Im not 3, Im ” & i
            Do something else…


        End If
        i = i + 1
    Loop
 显然,上面的例子会贻笑大方。


    i = 0
    Do While (i < 5)
        For j = 1 To 1
            If (i = 3) Then
                Exit For
            End If
            MsgBox “Im not 3, Im ” & i
            Do something else…
           
        Next j
        i = i + 1
    Loop


http://blog.csdn.net/chyzan/archive/2007/03/15/1530645.aspx

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » asp如何跳出本次进入下一次循环_asp技巧
分享到: 更多 (0)