Visual Basic - Következő iteráció elindítása: continue while, continue for, continue do

Ez az utasítás a következő iteráció elindítására szolgál. Ez azt jelenti ha meghívjuk akkor megszakítsuk a ciklus futását és a következő iterációval folytatódik a ciklus.

continue while

Leírás

continue while
Használt kulcsszavak: while continue

Példaprogramok

Visual Basic .NET

Következő iteráció elindítása lehetséges használata:
i=0
while i<10
 i=i+1
end while
x =0
while i<20
 i= i+2
 if i=16 then
    continue while
 end if
 x=x+1 
end while

continue for

Leírás

continue for
Használt kulcsszavak: continue

Példaprogramok

Visual Basic .NET

Következő iteráció elindítása lehetséges használata:
i=0
while i<10
 i=i+1
end while
x =0
while i<20
 i= i+2
 if i=16 then
    continue while
 end if
 x=x+1 
end while

continue do

Leírás

continue do
Használt kulcsszavak: do continue

Példaprogramok

Visual Basic .NET

Következő iteráció elindítása lehetséges használata:
i=0
while i<10
 i=i+1
end while
x =0
while i<20
 i= i+2
 if i=16 then
    continue while
 end if
 x=x+1 
end while
Más nyelveken: en hu cz sk