in reply to Interesting: a genuine Perl-bug

(Blink...)

I just encountered a comment that is talking about “the state feature of Perl 5.10.”

I know nothing about this feature (yet...), but could it be that this has something to do with what I am seeing here?

(I’m not annoyed, nor show-stopped ... I’m curious now!)

Replies are listed 'Best First'.
Re^2: Interesting: a genuine Perl-bug
by liverpole (Monsignor) on Sep 23, 2010 at 00:21 UTC
    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$..$/
Re^2: Interesting: a genuine Perl-bug
by Anonymous Monk on Sep 22, 2010 at 19:57 UTC
    , but could it be that this has something to do with what I am seeing here?

    No, absolutely not.