Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Print with newlineFunctions UNITCHECK (Berikutnya)
Perl Functions A-Z

Declare and assign a state variable (persistent lexical scoping)

Daftar Isi

  • state EXPR

  • state TYPE EXPR
  • state EXPR : ATTRS
  • state TYPE EXPR : ATTRS

    state declares a lexically scoped variable, just like my.However, those variables will never be reinitialized, contrary tolexical variables that are reinitialized each time their enclosing blockis entered.See Persistent Private Variables in perlsub for details.

    state variables are enabled only when the use feature "state" pragma is in effect, unless the keyword is written as CORE::state.See also feature.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Print with newlineFunctions UNITCHECK (Berikutnya)