File: Persistent-Variables.html

package info (click to toggle)
octave 10.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 145,388 kB
  • sloc: cpp: 335,976; ansic: 82,241; fortran: 20,963; objc: 9,402; sh: 8,756; yacc: 4,392; lex: 4,333; perl: 1,544; java: 1,366; awk: 1,259; makefile: 659; xml: 192
file content (179 lines) | stat: -rw-r--r-- 6,765 bytes parent folder | download | duplicates (2)
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html>
<!-- Created by GNU Texinfo 7.1.1, https://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Persistent Variables (GNU Octave (version 10.3.0))</title>

<meta name="description" content="Persistent Variables (GNU Octave (version 10.3.0))">
<meta name="keywords" content="Persistent Variables (GNU Octave (version 10.3.0))">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta name="viewport" content="width=device-width,initial-scale=1">

<link href="index.html" rel="start" title="Top">
<link href="Concept-Index.html" rel="index" title="Concept Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Variables.html" rel="up" title="Variables">
<link href="Status-of-Variables.html" rel="next" title="Status of Variables">
<link href="Global-Variables.html" rel="prev" title="Global Variables">
<style type="text/css">
<!--
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
div.example {margin-left: 3.2em}
span:hover a.copiable-link {visibility: visible}
-->
</style>
<link rel="stylesheet" type="text/css" href="octave.css">


</head>

<body lang="en">
<div class="section-level-extent" id="Persistent-Variables">
<div class="nav-panel">
<p>
Next: <a href="Status-of-Variables.html" accesskey="n" rel="next">Status of Variables</a>, Previous: <a href="Global-Variables.html" accesskey="p" rel="prev">Global Variables</a>, Up: <a href="Variables.html" accesskey="u" rel="up">Variables</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<h3 class="section" id="Persistent-Variables-1"><span>7.2 Persistent Variables<a class="copiable-link" href="#Persistent-Variables-1"> &para;</a></span></h3>
<a class="index-entry-id" id="index-persistent-variables"></a>
<a class="index-entry-id" id="index-persistent-statement"></a>
<a class="index-entry-id" id="index-variables_002c-persistent"></a>

<p>See keyword:  <a class="ref" href="Keywords.html#XREFpersistent">persistent</a>
</p>
<p>A variable that has been declared <em class="dfn">persistent</em> within a function
will retain its contents in memory between subsequent calls to the
same function.  The difference between persistent variables and global
variables is that persistent variables are local in scope to a
particular function and are not visible elsewhere.
</p>
<p>The following example uses a persistent variable to create a function
that prints the number of times it has been called.
</p>
<div class="example">
<div class="group"><pre class="example-preformatted">function count_calls ()
  persistent calls = 0;
  printf (&quot;'count_calls' has been called %d times\n&quot;,
          ++calls);
endfunction

for i = 1:3
  count_calls ();
endfor

-| 'count_calls' has been called 1 times
-| 'count_calls' has been called 2 times
-| 'count_calls' has been called 3 times
</pre></div></div>

<p>As the example shows, a variable may be declared persistent using a
<code class="code">persistent</code> declaration statement.  The following statements are
all persistent declarations.
</p>
<div class="example">
<div class="group"><pre class="example-preformatted">persistent a
persistent a b
persistent c = 2
persistent d = 3 e f = 5
</pre></div></div>

<p>The behavior of persistent variables is equivalent to the behavior of
static variables in C.
</p>
<p>One restriction for persistent variables is, that neither input nor
output arguments of a function can be persistent:
</p>
<div class="example">
<div class="group"><pre class="example-preformatted">function y = foo ()
  persistent y = 0;  # Not allowed!
endfunction

foo ()
-| error: can't make function parameter y persistent
</pre></div></div>

<p>Like global variables, a persistent variable may only be initialized once.
For example, after executing the following code
</p>
<div class="example">
<div class="group"><pre class="example-preformatted">persistent pvar = 1
persistent pvar = 2
</pre></div></div>

<p>the value of the persistent variable <code class="code">pvar</code> is 1, not 2.
</p>
<p>If a persistent variable is declared but not initialized to a specific
value, it will contain an empty matrix.  So, it is also possible to
initialize a persistent variable by checking whether it is empty, as the
following example illustrates.
</p>
<div class="example">
<div class="group"><pre class="example-preformatted">function count_calls ()
  persistent calls;
  if (isempty (calls))
    calls = 0;
  endif
  printf (&quot;'count_calls' has been called %d times\n&quot;,
          ++calls);
endfunction
</pre></div></div>

<p>This implementation behaves in exactly the same way as the previous
implementation of <code class="code">count_calls</code>.
</p>
<p>The value of a persistent variable is kept in memory until it is
explicitly cleared.  Assuming that the implementation of <code class="code">count_calls</code>
is saved on disk, we get the following behavior.
</p>
<div class="example">
<pre class="example-preformatted">for i = 1:2
  count_calls ();
endfor
-| 'count_calls' has been called 1 times
-| 'count_calls' has been called 2 times

clear
for i = 1:2
  count_calls ();
endfor
-| 'count_calls' has been called 3 times
-| 'count_calls' has been called 4 times

clear all
for i = 1:2
  count_calls ();
endfor
-| 'count_calls' has been called 1 times
-| 'count_calls' has been called 2 times

clear count_calls
for i = 1:2
  count_calls ();
endfor
-| 'count_calls' has been called 1 times
-| 'count_calls' has been called 2 times
</pre></div>

<p>That is, the persistent variable is only removed from memory when the
function containing the variable is removed.  Note that if the function
definition is typed directly into the Octave prompt, the persistent
variable will be cleared by a simple <code class="code">clear</code> command as the entire
function definition will be removed from memory.  If you do not want
a persistent variable to be removed from memory even if the function is
cleared, you should use the <code class="code">mlock</code> function
(see <a class="pxref" href="Function-Locking.html">Function Locking</a>).
</p>
</div>
<hr>
<div class="nav-panel">
<p>
Next: <a href="Status-of-Variables.html">Status of Variables</a>, Previous: <a href="Global-Variables.html">Global Variables</a>, Up: <a href="Variables.html">Variables</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
</div>



</body>
</html>