-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1027.html
108 lines (88 loc) · 5.08 KB
/
1027.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content="HTML Tidy, see www.w3.org" />
<title>Ayuda de DIV 2 - Sentencia CONTINUE</title>
<meta name="keywords" content="div, div2" />
<meta name="description" content="Ayuda en pantalla de DIV Games Studio 2" />
<meta http-equiv="Content-Language" content="ES" />
<meta name="author" content="Hammer Technologies" />
<meta name="copyright" content="© Copyright 1998,99 Hammer Technologies" />
<meta name="generator" content="divhelp v0.1 © 2007 Er_Makina" />
<meta name="robots" content="all,follow,index" />
<meta name="distribution" content="global" />
<link href="estilo.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="botonera">
<ul>
<li><a class="botonindice" href="indice.html">Índice</a></li>
<li><a class="botoninicio" href="3.html">Inicio</a></li>
<li><a class="botonglosario" href="4.html">Glosario</a></li>
<li><a class="botonfunciones" href="1032.html">Funciones</a></li>
</ul>
</div>
<h1>Sentencia CONTINUE</h1>
<p>Una sentencia <strong>CONTINUE</strong> dentro de un bucle forzará al programa a
finalizar la iteración actual del mismo y comenzar la siguiente.</p>
<p>Se denomina <strong>iteración</strong> a cada ejecución del grupo de
sentencias interior a un bucle (las sentencias entre un <a href="1022.html">LOOP</a> y su <a
href="1091.html">END</a>, por ejemplo).</p>
<p>No se puede poner esta sentencia más que dentro de los siguientes bucles:</p>
<p><a href="1024.html">LOOP</a> ... <a href="1091.html">END</a><br />
Un CONTINUE dentro de este bucle saltará al LOOP.</p>
<p><a href="1043.html">FROM</a> .. <a href="1096.html">TO</a> .. <a href="1095.html">STEP</a>
.. ... <a href="1091.html">END</a><br />
Un CONTINUE dentro de este bucle realizará el incremento (STEP) y, si no se ha pasado el
valor indicado en el TO, continuará el programa al inicio del bucle.</p>
<p><a href="1023.html">REPEAT</a> ... <a href="1097.html">UNTIL</a> <a
href="1053.html">(</a>..<a href="1053.html">)</a><br />
Un CONTINUE dentro de este bucle saltará al UNTIL.</p>
<p><a href="1022.html">WHILE</a> <a href="1053.html">(</a> .. <a href="1053.html">)</a> ... <a
href="1091.html">END</a><br />
Un CONTINUE dentro de este bucle saltará al WHILE.</p>
<p><a href="1025.html">FOR</a> <a href="1053.html">(</a> .. <a href="1068.html">;</a> .. <a
href="1068.html">;</a> .. <a href="1053.html">)</a> ... <a href="1091.html">END</a><br />
Un CONTINUE dentro de este bucle realizará el incremento y la comparación; si
ésta última resulta cierta continuará el programa al inicio del bucle, si
resulta falsa el programa continuará tras el END del FOR.</p>
<p>En caso de haber varios bucles anidados (unos dentro de otros) la sentencia
<strong>CONTINUE</strong> tendrá efecto únicamente en el bucle más
interior de ellos.</p>
<div class="ejemplo">
<div class="ejtitulo">
Ejemplo:
</div>
<pre class="ejprograma">
<span class="syntax1">PROGRAM</span> mi_juego<span class="syntax3">;</span>
<span class="syntax1">BEGIN</span>
<span class="syntax1">FOR</span> <span class="syntax3">(</span>x<span
class="syntax3">=</span><span class="syntax2">0</span><span class="syntax3">,</span> <span
class="syntax1">y</span><span class="syntax3">=</span><span class="syntax2">0</span><span
class="syntax3">;</span>x<span class="syntax3"><</span><span class="syntax2">10</span><span
class="syntax3">;</span>x<span class="syntax3">++)</span>
<span class="syntax1">IF</span> <span class="syntax3">(</span>x<span
class="syntax3"><</span><span class="syntax2">5</span><span class="syntax3">)</span> <span
class="syntax1">CONTINUE</span><span class="syntax3">;</span> <span class="syntax1">END</span>
<span class="syntax1">y</span><span class="syntax3">++;</span>
<span class="syntax1">END</span>
<span class="syntax1">END</span>
</pre>
</div>
<br />
<br />
<p>En este ejemplo, tras ejecutarse el bucle completo, <strong>x</strong> valdrá
<strong>10</strong> e <strong>y</strong> valdrá <strong>5</strong>, pues mientras
<strong>x</strong> es menor que 5 la sentencia <strong>CONTINUE</strong> impide que se ejecute
la sentencia <strong>y++;</strong>.</p>
<p><strong>Importante</strong></p>
<hr />
<p>La sentencia <strong>CONTINUE</strong> no es válida dentro de sentencias <a
href="1020.html">IF</a>, ni <a href="1021.html">SWITCH</a> (ni las secciones <a
href="1087.html">CASE</a> de esta sentencia), ni sentencias <a href="1030.html">CLONE</a> (ya
que estas sentencias no implementan bucles y, por tanto, no realizan iteraciones).</p>
<hr />
Ver: <a href="1000.html">Sintaxis</a>
</body>
</html>