代码搜索:continue
找到约 10,000 项符合「continue」的源代码
代码结果 10,000
www.eeworm.com/read/229410/14340322
xpm continue_small.xpm
/* XPM */
static char * continue_small_xpm[] = {
"19 14 8 1",
" c None",
". c #000000",
"+ c #4C603C",
"@ c #566B43",
"# c #445636",
"$ c #526741",
"% c #5A7046",
"& c #37452B",
" "
www.eeworm.com/read/213912/15122466
m break_continue.m
for ii=1:9
if ii==3
continue
end
fprintf('ii=%d\n',ii);
if ii==5
break
end
end
disp('The end of loop')
www.eeworm.com/read/213349/15136565
gif continue-shopping.gif
www.eeworm.com/read/461848/1549650
m test_continue.m
for ii = 1:5
if ii == 3
continue;
end
fprintf('ii = %d\n',ii);
end
disp(['End of loop!']);
www.eeworm.com/read/453168/1642238
tests continue1.tests
for v in a b c; do echo A:$v; continue 666; done
echo OK1
for v in a b c; do echo A:$v; continue 666; done
echo OK2
www.eeworm.com/read/247171/4487545
vb continue1.vb
Class Continue1
Sub Test
For i As Integer = 0 To 2
Continue For
Next
While True
Continue While
End While
Do While True
Continue Do
Loop
End Sub
End Class
www.eeworm.com/read/247171/4487592
vb continue2.vb
Class Continue2
Sub Test()
Dim obj As Object
For Each i As Integer In CType(obj, system.collections.ienumerable)
Continue For
Next
End Sub
End Class