home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _22084ea008480198acc0224a7b5b63d2 < prev    next >
Text File  |  2000-03-23  |  4KB  |  115 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>strict - Perl pragma to restrict unsafe constructs</TITLE>
  5. <LINK REL="stylesheet" HREF="../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> strict - Perl pragma to restrict unsafe constructs</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25. </UL>
  26. <!-- INDEX END -->
  27.  
  28. <HR>
  29. <P>
  30. <H1><A NAME="name">NAME</A></H1>
  31. <P>strict - Perl pragma to restrict unsafe constructs</P>
  32. <P>
  33. <HR>
  34. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  35. <UL>
  36. <LI>Linux</LI>
  37. <LI>Solaris</LI>
  38. <LI>Windows</LI>
  39. </UL>
  40. <HR>
  41. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  42. <PRE>
  43.     use strict;</PRE>
  44. <PRE>
  45.     use strict "vars";
  46.     use strict "refs";
  47.     use strict "subs";</PRE>
  48. <PRE>
  49.     use strict;
  50.     no strict "vars";</PRE>
  51. <P>
  52. <HR>
  53. <H1><A NAME="description">DESCRIPTION</A></H1>
  54. <P>If no import list is supplied, all possible restrictions are assumed.
  55. (This is the safest mode to operate in, but is sometimes too strict for
  56. casual programming.)  Currently, there are three possible things to be
  57. strict about:  ``subs'', ``vars'', and ``refs''.</P>
  58. <DL>
  59. <DT><STRONG><A NAME="item_strict_refs"><CODE>strict refs</CODE></A></STRONG><BR>
  60. <DD>
  61. This generates a runtime error if you 
  62. use symbolic references (see <A HREF="../lib/Pod/perlref.html">the perlref manpage</A>).
  63. <PRE>
  64.     use strict 'refs';
  65.     $ref = \$foo;
  66.     print $$ref;        # ok
  67.     $ref = "foo";
  68.     print $$ref;        # runtime error; normally ok
  69.     $file = "STDOUT";
  70.     print $file "Hi!";  # error; note: no comma after $file</PRE>
  71. <P></P>
  72. <DT><STRONG><A NAME="item_strict_vars"><CODE>strict vars</CODE></A></STRONG><BR>
  73. <DD>
  74. This generates a compile-time error if you access a variable that wasn't
  75. declared via ``our'' or <CODE>use vars</CODE>,
  76. localized via <A HREF="../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A>, or wasn't fully qualified.  Because this is to avoid
  77. variable suicide problems and subtle dynamic scoping issues, a merely
  78. <A HREF="../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> variable isn't good enough.  See <A HREF="../lib/Pod/perlfunc.html#my">my in the perlfunc manpage</A> and
  79. <A HREF="../lib/Pod/perlfunc.html#local">local in the perlfunc manpage</A>.
  80. <PRE>
  81.     use strict 'vars';
  82.     $X::foo = 1;         # ok, fully qualified
  83.     my $foo = 10;        # ok, my() var
  84.     local $foo = 9;      # blows up</PRE>
  85. <PRE>
  86.     package Cinna;
  87.     our $bar;                   # Declares $bar in current package
  88.     $bar = 'HgS';               # ok, global declared via pragma</PRE>
  89. <P>The <A HREF="../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> generated a compile-time error because you just touched a global
  90. name without fully qualifying it.</P>
  91. <P>Because of their special use by sort(), the variables $a and $b are
  92. exempted from this check.</P>
  93. <P></P>
  94. <DT><STRONG><A NAME="item_strict_subs"><CODE>strict subs</CODE></A></STRONG><BR>
  95. <DD>
  96. This disables the poetry optimization, generating a compile-time error if
  97. you try to use a bareword identifier that's not a subroutine, unless it
  98. appears in curly braces or on the left hand side of the ``=>'' symbol.
  99. <PRE>
  100.     use strict 'subs';
  101.     $SIG{PIPE} = Plumber;       # blows up
  102.     $SIG{PIPE} = "Plumber";     # just fine: bareword in curlies always ok
  103.     $SIG{PIPE} = \&Plumber;     # preferred form</PRE>
  104. <P></P></DL>
  105. <P>See <A HREF="../lib/Pod/perlmodlib.html#pragmatic modules">Pragmatic Modules in the perlmodlib manpage</A>.</P>
  106. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  107. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  108. <STRONG><P CLASS=block> strict - Perl pragma to restrict unsafe constructs</P></STRONG>
  109. </TD></TR>
  110. </TABLE>
  111.  
  112. </BODY>
  113.  
  114. </HTML>
  115.