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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlmod - Perl modules</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perlmod - Perl modules</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22.     <UL>
  23.  
  24.         <LI><A HREF="#packages">Packages</A></LI>
  25.         <LI><A HREF="#symbol tables">Symbol Tables</A></LI>
  26.         <LI><A HREF="#package constructors and destructors">Package Constructors and Destructors</A></LI>
  27.         <LI><A HREF="#perl classes">Perl Classes</A></LI>
  28.         <LI><A HREF="#perl modules">Perl Modules</A></LI>
  29.     </UL>
  30.  
  31.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  32. </UL>
  33. <!-- INDEX END -->
  34.  
  35. <HR>
  36. <P>
  37. <H1><A NAME="name">NAME</A></H1>
  38. <P>perlmod - Perl modules (packages and symbol tables)</P>
  39. <P>
  40. <HR>
  41. <H1><A NAME="description">DESCRIPTION</A></H1>
  42. <P>
  43. <H2><A NAME="packages">Packages</A></H2>
  44. <P>Perl provides a mechanism for alternative namespaces to protect
  45. packages from stomping on each other's variables.  In fact, there's
  46. really no such thing as a global variable in Perl .  The package
  47. statement declares the compilation unit as being in the given
  48. namespace.  The scope of the package declaration is from the
  49. declaration itself through the end of the enclosing block, <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>,
  50. or file, whichever comes first (the same scope as the <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> and
  51. <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> operators).  Unqualified dynamic identifiers will be in
  52. this namespace, except for those few identifiers that if unqualified,
  53. default to the main package instead of the current one as described
  54. below.  A package statement affects only dynamic variables--including
  55. those you've used <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> on--but <EM>not</EM> lexical variables created
  56. with my().  Typically it would be the first declaration in a file
  57. included by the <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>, or <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> operators.  You can
  58. switch into a package in more than one place; it merely influences
  59. which symbol table is used by the compiler for the rest of that
  60. block.  You can refer to variables and filehandles in other packages
  61. by prefixing the identifier with the package name and a double
  62. colon: <CODE>$Package::Variable</CODE>.  If the package name is null, the
  63. <CODE>main</CODE> package is assumed.  That is, <CODE>$::sail</CODE> is equivalent to
  64. <CODE>$main::sail</CODE>.</P>
  65. <P>The old package delimiter was a single quote, but double colon is now the
  66. preferred delimiter, in part because it's more readable to humans, and
  67. in part because it's more readable to <STRONG>emacs</STRONG> macros.  It also makes C++
  68. programmers feel like they know what's going on--as opposed to using the
  69. single quote as separator, which was there to make Ada programmers feel
  70. like they knew what's going on.  Because the old-fashioned syntax is still
  71. supported for backwards compatibility, if you try to use a string like
  72. <CODE>"This is $owner's house"</CODE>, you'll be accessing <CODE>$owner::s</CODE>; that is,
  73. the $s variable in package <CODE>owner</CODE>, which is probably not what you meant.
  74. Use braces to disambiguate, as in <CODE>"This is ${owner}'s house"</CODE>.</P>
  75. <P>Packages may themselves contain package separators, as in
  76. <CODE>$OUTER::INNER::var</CODE>.  This implies nothing about the order of
  77. name lookups, however.  There are no relative packages: all symbols
  78. are either local to the current package, or must be fully qualified
  79. from the outer package name down.  For instance, there is nowhere
  80. within package <CODE>OUTER</CODE> that <CODE>$INNER::var</CODE> refers to
  81. <CODE>$OUTER::INNER::var</CODE>.  It would treat package <CODE>INNER</CODE> as a totally
  82. separate global package.</P>
  83. <P>Only identifiers starting with letters (or underscore) are stored
  84. in a package's symbol table.  All other symbols are kept in package
  85. <CODE>main</CODE>, including all punctuation variables, like $_.  In addition,
  86. when unqualified, the identifiers STDIN, STDOUT, STDERR, ARGV,
  87. ARGVOUT, ENV, INC, and SIG are forced to be in package <CODE>main</CODE>,
  88. even when used for other purposes than their built-in one.  If you
  89. have a package called <A HREF="../../lib/Pod/perlfunc.html#item_m"><CODE>m</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_s"><CODE>s</CODE></A>, or <A HREF="../../lib/Pod/perlfunc.html#item_y"><CODE>y</CODE></A>, then you can't use the
  90. qualified form of an identifier because it would be instead interpreted
  91. as a pattern match, a substitution, or a transliteration.</P>
  92. <P>Variables beginning with underscore used to be forced into package
  93. main, but we decided it was more useful for package writers to be able
  94. to use leading underscore to indicate private variables and method names.
  95. $_ is still global though.  See also <A HREF="../../lib/Pod/perlvar.html#technical note on the syntax of variable names">Technical Note on the Syntax of Variable Names in the perlvar manpage</A>.</P>
  96. <P><A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>ed strings are compiled in the package in which the <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval()</CODE></A> was
  97. compiled.  (Assignments to <CODE>$SIG{}</CODE>, however, assume the signal
  98. handler specified is in the <CODE>main</CODE> package.  Qualify the signal handler
  99. name if you wish to have a signal handler in a package.)  For an
  100. example, examine <EM>perldb.pl</EM> in the Perl library.  It initially switches
  101. to the <CODE>DB</CODE> package so that the debugger doesn't interfere with variables
  102. in the program you are trying to debug.  At various points, however, it
  103. temporarily switches back to the <CODE>main</CODE> package to evaluate various
  104. expressions in the context of the <CODE>main</CODE> package (or wherever you came
  105. from).  See <A HREF="../../lib/Pod/perldebug.html">the perldebug manpage</A>.</P>
  106. <P>The special symbol <CODE>__PACKAGE__</CODE> contains the current package, but cannot
  107. (easily) be used to construct variables.</P>
  108. <P>See <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A> for other scoping issues related to <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> and local(),
  109. and <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A> regarding closures.</P>
  110. <P>
  111. <H2><A NAME="symbol tables">Symbol Tables</A></H2>
  112. <P>The symbol table for a package happens to be stored in the hash of that
  113. name with two colons appended.  The main symbol table's name is thus
  114. <CODE>%main::</CODE>, or <CODE>%::</CODE> for short.  Likewise symbol table for the nested
  115. package mentioned earlier is named <CODE>%OUTER::INNER::</CODE>.</P>
  116. <P>The value in each entry of the hash is what you are referring to when you
  117. use the <CODE>*name</CODE> typeglob notation.  In fact, the following have the same
  118. effect, though the first is more efficient because it does the symbol
  119. table lookups at compile time:</P>
  120. <PRE>
  121.     local *main::foo    = *main::bar;
  122.     local $main::{foo}  = $main::{bar};</PRE>
  123. <P>You can use this to print out all the variables in a package, for
  124. instance.  The standard but antequated <EM>dumpvar.pl</EM> library and
  125. the CPAN module Devel::Symdump make use of this.</P>
  126. <P>Assignment to a typeglob performs an aliasing operation, i.e.,</P>
  127. <PRE>
  128.     *dick = *richard;</PRE>
  129. <P>causes variables, subroutines, formats, and file and directory handles
  130. accessible via the identifier <CODE>richard</CODE> also to be accessible via the
  131. identifier <CODE>dick</CODE>.  If you want to alias only a particular variable or
  132. subroutine, assign a reference instead:</P>
  133. <PRE>
  134.     *dick = \$richard;</PRE>
  135. <P>Which makes $richard and $dick the same variable, but leaves
  136. @richard and @dick as separate arrays.  Tricky, eh?</P>
  137. <P>This mechanism may be used to pass and return cheap references
  138. into or from subroutines if you won't want to copy the whole
  139. thing.  It only works when assigning to dynamic variables, not
  140. lexicals.</P>
  141. <PRE>
  142.     %some_hash = ();                    # can't be my()
  143.     *some_hash = fn( \%another_hash );
  144.     sub fn {
  145.         local *hashsym = shift;
  146.         # now use %hashsym normally, and you
  147.         # will affect the caller's %another_hash
  148.         my %nhash = (); # do what you want
  149.         return \%nhash;
  150.     }</PRE>
  151. <P>On return, the reference will overwrite the hash slot in the
  152. symbol table specified by the *some_hash typeglob.  This
  153. is a somewhat tricky way of passing around references cheaply
  154. when you won't want to have to remember to dereference variables
  155. explicitly.</P>
  156. <P>Another use of symbol tables is for making ``constant'' scalars.</P>
  157. <PRE>
  158.     *PI = \3.14159265358979;</PRE>
  159. <P>Now you cannot alter $PI, which is probably a good thing all in all.
  160. This isn't the same as a constant subroutine, which is subject to
  161. optimization at compile-time.  This isn't.  A constant subroutine is one
  162. prototyped to take no arguments and to return a constant expression.
  163. See <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A> for details on these.  The <CODE>use constant</CODE> pragma is a
  164. convenient shorthand for these.</P>
  165. <P>You can say <CODE>*foo{PACKAGE}</CODE> and <CODE>*foo{NAME}</CODE> to find out what name and
  166. package the *foo symbol table entry comes from.  This may be useful
  167. in a subroutine that gets passed typeglobs as arguments:</P>
  168. <PRE>
  169.     sub identify_typeglob {
  170.         my $glob = shift;
  171.         print 'You gave me ', *{$glob}{PACKAGE}, '::', *{$glob}{NAME}, "\n";
  172.     }
  173.     identify_typeglob *foo;
  174.     identify_typeglob *bar::baz;</PRE>
  175. <P>This prints</P>
  176. <PRE>
  177.     You gave me main::foo
  178.     You gave me bar::baz</PRE>
  179. <P>The <CODE>*foo{THING}</CODE> notation can also be used to obtain references to the
  180. individual elements of *foo, see <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.</P>
  181. <P>Subroutine definitions (and declarations, for that matter) need
  182. not necessarily be situated in the package whose symbol table they
  183. occupy.  You can define a subroutine outside its package by
  184. explicitly qualifying the name of the subroutine:</P>
  185. <PRE>
  186.     package main;
  187.     sub Some_package::foo { ... }   # &foo defined in Some_package</PRE>
  188. <P>This is just a shorthand for a typeglob assignment at compile time:</P>
  189. <PRE>
  190.     BEGIN { *Some_package::foo = sub { ... } }</PRE>
  191. <P>and is <EM>not</EM> the same as writing:</P>
  192. <PRE>
  193.     {
  194.         package Some_package;
  195.         sub foo { ... }
  196.     }</PRE>
  197. <P>In the first two versions, the body of the subroutine is
  198. lexically in the main package, <EM>not</EM> in Some_package. So
  199. something like this:</P>
  200. <PRE>
  201.     package main;</PRE>
  202. <PRE>
  203.     $Some_package::name = "fred";
  204.     $main::name = "barney";</PRE>
  205. <PRE>
  206.     sub Some_package::foo {
  207.         print "in ", __PACKAGE__, ": \$name is '$name'\n";
  208.     }</PRE>
  209. <PRE>
  210.     Some_package::foo();</PRE>
  211. <P>prints:</P>
  212. <PRE>
  213.     in main: $name is 'barney'</PRE>
  214. <P>rather than:</P>
  215. <PRE>
  216.     in Some_package: $name is 'fred'</PRE>
  217. <P>This also has implications for the use of the SUPER:: qualifier
  218. (see <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A>).</P>
  219. <P>
  220. <H2><A NAME="package constructors and destructors">Package Constructors and Destructors</A></H2>
  221. <P>Four special subroutines act as package constructors and destructors.
  222. These are the <CODE>BEGIN</CODE>, <CODE>CHECK</CODE>, <CODE>INIT</CODE>, and <CODE>END</CODE> routines.  The
  223. <A HREF="../../lib/Pod/perlfunc.html#item_sub"><CODE>sub</CODE></A> is optional for these routines.</P>
  224. <P>A <CODE>BEGIN</CODE> subroutine is executed as soon as possible, that is, the moment
  225. it is completely defined, even before the rest of the containing file
  226. is parsed.  You may have multiple <CODE>BEGIN</CODE> blocks within a file--they
  227. will execute in order of definition.  Because a <CODE>BEGIN</CODE> block executes
  228. immediately, it can pull in definitions of subroutines and such from other
  229. files in time to be visible to the rest of the file.  Once a <CODE>BEGIN</CODE>
  230. has run, it is immediately undefined and any code it used is returned to
  231. Perl's memory pool.  This means you can't ever explicitly call a <CODE>BEGIN</CODE>.</P>
  232. <P>An <CODE>END</CODE> subroutine is executed as late as possible, that is, after
  233. perl has finished running the program and just before the interpreter
  234. is being exited, even if it is exiting as a result of a <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die()</CODE></A> function.
  235. (But not if it's polymorphing into another program via <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec</CODE></A>, or
  236. being blown out of the water by a signal--you have to trap that yourself
  237. (if you can).)  You may have multiple <CODE>END</CODE> blocks within a file--they
  238. will execute in reverse order of definition; that is: last in, first
  239. out (LIFO).  <CODE>END</CODE> blocks are not executed when you run perl with the
  240. <CODE>-c</CODE> switch.</P>
  241. <P>Inside an <CODE>END</CODE> subroutine, <CODE>$?</CODE> contains the value that the program is
  242. going to pass to <A HREF="../../lib/Pod/perlfunc.html#item_exit"><CODE>exit()</CODE></A>.  You can modify <CODE>$?</CODE> to change the exit
  243. value of the program.  Beware of changing <CODE>$?</CODE> by accident (e.g. by
  244. running something via <A HREF="../../lib/Pod/perlfunc.html#item_system"><CODE>system</CODE></A>).</P>
  245. <P>Similar to <CODE>BEGIN</CODE> blocks, <CODE>INIT</CODE> blocks are run just before the
  246. Perl runtime begins execution, in ``first in, first out'' (FIFO) order.
  247. For example, the code generators documented in <EM>perlcc</EM> make use of
  248. <CODE>INIT</CODE> blocks to initialize and resolve pointers to XSUBs.</P>
  249. <P>Similar to <CODE>END</CODE> blocks, <CODE>CHECK</CODE> blocks are run just after the
  250. Perl compile phase ends and before the run time begins, in
  251. LIFO order.  <CODE>CHECK</CODE> blocks are again useful in the Perl compiler
  252. suite to save the compiled state of the program.</P>
  253. <P>When you use the <STRONG>-n</STRONG> and <STRONG>-p</STRONG> switches to Perl, <CODE>BEGIN</CODE> and
  254. <CODE>END</CODE> work just as they do in <STRONG>awk</STRONG>, as a degenerate case.  As currently
  255. implemented (and subject to change, since its inconvenient at best),
  256. both <CODE>BEGIN</CODE> and<END> blocks are run when you use the <STRONG>-c</STRONG> switch
  257. for a compile-only syntax check, although your main code is not.</P>
  258. <P>
  259. <H2><A NAME="perl classes">Perl Classes</A></H2>
  260. <P>There is no special class syntax in Perl, but a package may act
  261. as a class if it provides subroutines to act as methods.  Such a
  262. package may also derive some of its methods from another class (package)
  263. by listing the other package <CODE>name(s)</CODE> in its global @ISA array (which 
  264. must be a package global, not a lexical).</P>
  265. <P>For more on this, see <A HREF="../../lib/Pod/perltoot.html">the perltoot manpage</A> and <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A>.</P>
  266. <P>
  267. <H2><A NAME="perl modules">Perl Modules</A></H2>
  268. <P>A module is just a set of related function in a library file a Perl
  269. package with the same name as the file.  It is specifically designed
  270. to be reusable by other modules or programs.  It may do this by
  271. providing a mechanism for exporting some of its symbols into the
  272. symbol table of any package using it.  Or it may function as a class
  273. definition and make its semantics available implicitly through
  274. method calls on the class and its objects, without explicitly
  275. exportating anything.  Or it can do a little of both.</P>
  276. <P>For example, to start a traditional, non-OO module called Some::Module,
  277. create a file called <EM>Some/Module.pm</EM> and start with this template:</P>
  278. <PRE>
  279.     package Some::Module;  # assumes Some/Module.pm</PRE>
  280. <PRE>
  281.     use strict;
  282.     use warnings;</PRE>
  283. <PRE>
  284.     BEGIN {
  285.         use Exporter   ();
  286.         our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);</PRE>
  287. <PRE>
  288.         # set the version for version checking
  289.         $VERSION     = 1.00;
  290.         # if using RCS/CVS, this may be preferred
  291.         $VERSION = do { my @r = (q$Revision: 2.21 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; # must be all one line, for MakeMaker</PRE>
  292. <PRE>
  293.         @ISA         = qw(Exporter);
  294.         @EXPORT      = qw(&func1 &func2 &func4);
  295.         %EXPORT_TAGS = ( );     # eg: TAG => [ qw!name1 name2! ],</PRE>
  296. <PRE>
  297.         # your exported package globals go here,
  298.         # as well as any optionally exported functions
  299.         @EXPORT_OK   = qw($Var1 %Hashit &func3);
  300.     }
  301.     our @EXPORT_OK;</PRE>
  302. <PRE>
  303.     # non-exported package globals go here
  304.     our @more;
  305.     our $stuff;</PRE>
  306. <PRE>
  307.     # initialize package globals, first exported ones
  308.     $Var1   = '';
  309.     %Hashit = ();</PRE>
  310. <PRE>
  311.     # then the others (which are still accessible as $Some::Module::stuff)
  312.     $stuff  = '';
  313.     @more   = ();</PRE>
  314. <PRE>
  315.     # all file-scoped lexicals must be created before
  316.     # the functions below that use them.</PRE>
  317. <PRE>
  318.     # file-private lexicals go here
  319.     my $priv_var    = '';
  320.     my %secret_hash = ();</PRE>
  321. <PRE>
  322.     # here's a file-private function as a closure,
  323.     # callable as &$priv_func;  it cannot be prototyped.
  324.     my $priv_func = sub {
  325.         # stuff goes here.
  326.     };</PRE>
  327. <PRE>
  328.     # make all your functions, whether exported or not;
  329.     # remember to put something interesting in the {} stubs
  330.     sub func1      {}    # no prototype
  331.     sub func2()    {}    # proto'd void
  332.     sub func3($$)  {}    # proto'd to 2 scalars</PRE>
  333. <PRE>
  334.     # this one isn't exported, but could be called!
  335.     sub func4(\%)  {}    # proto'd to 1 hash ref</PRE>
  336. <PRE>
  337.     END { }       # module clean-up code here (global destructor)</PRE>
  338. <PRE>
  339.     ## YOUR CODE GOES HERE</PRE>
  340. <PRE>
  341.     1;  # don't forget to return a true value from the file</PRE>
  342. <P>Then go on to declare and use your variables in functions without
  343. any qualifications.  See <A HREF="../../lib/Exporter.html">the Exporter manpage</A> and the <A HREF="../../lib/Pod/perlmodlib.html">the perlmodlib manpage</A> for
  344. details on mechanics and style issues in module creation.</P>
  345. <P>Perl modules are included into your program by saying</P>
  346. <PRE>
  347.     use Module;</PRE>
  348. <P>or</P>
  349. <PRE>
  350.     use Module LIST;</PRE>
  351. <P>This is exactly equivalent to</P>
  352. <PRE>
  353.     BEGIN { require Module; import Module; }</PRE>
  354. <P>or</P>
  355. <PRE>
  356.     BEGIN { require Module; import Module LIST; }</PRE>
  357. <P>As a special case</P>
  358. <PRE>
  359.     use Module ();</PRE>
  360. <P>is exactly equivalent to</P>
  361. <PRE>
  362.     BEGIN { require Module; }</PRE>
  363. <P>All Perl module files have the extension <EM>.pm</EM>.  The <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> operator
  364. assumes this so you don't have to spell out ``<EM>Module.pm</EM>'' in quotes.
  365. This also helps to differentiate new modules from old <EM>.pl</EM> and
  366. <EM>.ph</EM> files.  Module names are also capitalized unless they're
  367. functioning as pragmas; pragmas are in effect compiler directives,
  368. and are sometimes called ``pragmatic modules'' (or even ``pragmata''
  369. if you're a classicist).</P>
  370. <P>The two statements:</P>
  371. <PRE>
  372.     require SomeModule;
  373.     require "SomeModule.pm";</PRE>
  374. <P>differ from each other in two ways.  In the first case, any double
  375. colons in the module name, such as <CODE>Some::Module</CODE>, are translated
  376. into your system's directory separator, usually ``/''.   The second
  377. case does not, and would have to be specified literally.  The other
  378. difference is that seeing the first <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> clues in the compiler
  379. that uses of indirect object notation involving ``SomeModule'', as
  380. in <CODE>$ob = purge SomeModule</CODE>, are method calls, not function calls.
  381. (Yes, this really can make a difference.)</P>
  382. <P>Because the <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> statement implies a <CODE>BEGIN</CODE> block, the importing
  383. of semantics happens as soon as the <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> statement is compiled,
  384. before the rest of the file is compiled.  This is how it is able
  385. to function as a pragma mechanism, and also how modules are able to
  386. declare subroutines that are then visible as list or unary operators for
  387. the rest of the current file.  This will not work if you use <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>
  388. instead of <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A>.  With <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> you can get into this problem:</P>
  389. <PRE>
  390.     require Cwd;                # make Cwd:: accessible
  391.     $here = Cwd::getcwd();</PRE>
  392. <PRE>
  393.     use Cwd;                    # import names from Cwd::
  394.     $here = getcwd();</PRE>
  395. <PRE>
  396.     require Cwd;                # make Cwd:: accessible
  397.     $here = getcwd();           # oops! no main::getcwd()</PRE>
  398. <P>In general, <CODE>use Module ()</CODE> is recommended over <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require Module</CODE></A>,
  399. because it determines module availability at compile time, not in the
  400. middle of your program's execution.  An exception would be if two modules
  401. each tried to <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> each other, and each also called a function from
  402. that other module.  In that case, it's easy to use <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>s instead.</P>
  403. <P>Perl packages may be nested inside other package names, so we can have
  404. package names containing <CODE>::</CODE>.  But if we used that package name
  405. directly as a filename it would makes for unwieldy or impossible
  406. filenames on some systems.  Therefore, if a module's name is, say,
  407. <CODE>Text::Soundex</CODE>, then its definition is actually found in the library
  408. file <EM>Text/Soundex.pm</EM>.</P>
  409. <P>Perl modules always have a <EM>.pm</EM> file, but there may also be
  410. dynamically linked executables (often ending in <EM>.so</EM>) or autoloaded
  411. subroutine definitions (often ending in <EM>.al</EM> associated with the
  412. module.  If so, these will be entirely transparent to the user of
  413. the module.  It is the responsibility of the <EM>.pm</EM> file to load
  414. (or arrange to autoload) any additional functionality.  For example,
  415. although the POSIX module happens to do both dynamic loading and
  416. autoloading, but the user can say just <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use POSIX</CODE></A> to get it all.</P>
  417. <P>
  418. <HR>
  419. <H1><A NAME="see also">SEE ALSO</A></H1>
  420. <P>See <A HREF="../../lib/Pod/perlmodlib.html">the perlmodlib manpage</A> for general style issues related to building Perl
  421. modules and classes, as well as descriptions of the standard library
  422. and CPAN, <A HREF="../../lib/Exporter.html">the Exporter manpage</A> for how Perl's standard import/export mechanism
  423. works, <A HREF="../../lib/Pod/perltoot.html">the perltoot manpage</A> and <A HREF="../../lib/Pod/perltootc.html">the perltootc manpage</A> for an in-depth tutorial on
  424. creating classes, <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A> for a hard-core reference document on
  425. objects, <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A> for an explanation of functions and scoping,
  426. and <A HREF="../../lib/Pod/perlxstut.html">the perlxstut manpage</A> and <A HREF="../../lib/Pod/perlguts.html">the perlguts manpage</A> for more information on writing
  427. extension modules.</P>
  428. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  429. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  430. <STRONG><P CLASS=block> perlmod - Perl modules</P></STRONG>
  431. </TD></TR>
  432. </TABLE>
  433.  
  434. </BODY>
  435.  
  436. </HTML>
  437.