http://www.perlmonks.org?node_id=861412


in reply to Re: Interesting: a genuine Perl-bug
in thread Interesting: a genuine Perl-bug

Hi sundialsvc4,

It's a very cool feature of 5.10 which mimics the static variable of C.  State variables don't lose their data, even when they go out of scope, so you can use them for cases where you want data to persist, without having to use globals.

For example, to perform initialization only once the first time a subroutine is called, you could do this:

#!/usr/bin/perl -w use feature qw{ state }; use strict; use warnings; for (1..5) { some_sub(); } sub some_sub { (state $b_initialized++) or initialize(); print "Now doing the main work of some_sub() ...\n"; } sub initialize { print "Initializing....\n"; # ... etc ... } __END__ === Output === Initializing.... Now doing the main work of some_sub() ... Now doing the main work of some_sub() ... Now doing the main work of some_sub() ... Now doing the main work of some_sub() ... Now doing the main work of some_sub() ...

Or to define a subroutine which returns a unique integer each time it's called:

#!/usr/bin/perl -w use feature qw{ state }; use strict; use warnings; for (1..5) { printf "Got the value %d\n", unique_integer(); } sub unique_integer { return ++(state $ncalls); } __END__ === Output === Got the value 1 Got the value 2 Got the value 3 Got the value 4 Got the value 5

s''(q.S:$/9=(T1';s;(..)(..);$..=substr+crypt($1,$2),2,3;eg;print$..$/