Thread
sub mit statischem Speicher
(28 answers)
Opened by
worst_case
at
2019-01-26 20:27
rosti
2019-01-27 09:12
User since
2011-03-19
3472 Artikel
BenutzerIn
Guck Dir mal
state
an:
Code (perl): (
dl
)
1
2
3
4
5
6
use
5.010
;
sub
cnt
{
state
$c
;
$c
++;
}
Ansonsten verhält sich ja jede packageweite Variable statisch die mit
our
deklariert wurde.
MfG
View full thread
sub mit statischem Speicher