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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>base - Establish IS-A relationship with base class at compile time</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> base - Establish IS-A relationship with base class at compile time</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.     <LI><A HREF="#history">HISTORY</A></LI>
  26.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  27. </UL>
  28. <!-- INDEX END -->
  29.  
  30. <HR>
  31. <P>
  32. <H1><A NAME="name">NAME</A></H1>
  33. <P>base - Establish IS-A relationship with base class at compile time</P>
  34. <P>
  35. <HR>
  36. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  37. <UL>
  38. <LI>Linux</LI>
  39. <LI>Solaris</LI>
  40. <LI>Windows</LI>
  41. </UL>
  42. <HR>
  43. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  44. <PRE>
  45.     package Baz;
  46.     use base qw(Foo Bar);</PRE>
  47. <P>
  48. <HR>
  49. <H1><A NAME="description">DESCRIPTION</A></H1>
  50. <P>Roughly similar in effect to</P>
  51. <PRE>
  52.     BEGIN {
  53.         require Foo;
  54.         require Bar;
  55.         push @ISA, qw(Foo Bar);
  56.     }</PRE>
  57. <P>Will also initialize the %FIELDS hash if one of the base classes has
  58. it.  Multiple inheritance of %FIELDS is not supported.  The 'base'
  59. pragma will croak if multiple base classes have a %FIELDS hash.  See
  60. <A HREF="../lib/fields.html">the fields manpage</A> for a description of this feature.</P>
  61. <P>When strict 'vars' is in scope <EM>base</EM> also let you assign to @ISA
  62. without having to declare @ISA with the 'vars' pragma first.</P>
  63. <P>If any of the base classes are not loaded yet, <EM>base</EM> silently
  64. <A HREF="../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>s them.  Whether to <A HREF="../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> a base class package is
  65. determined by the absence of a global $VERSION in the base package.
  66. If $VERSION is not detected even after loading it, <base> will
  67. define $VERSION in the base package, setting it to the string
  68. <CODE>-1, defined by base.pm</CODE>.</P>
  69. <P>
  70. <HR>
  71. <H1><A NAME="history">HISTORY</A></H1>
  72. <P>This module was introduced with Perl 5.004_04.</P>
  73. <P>
  74. <HR>
  75. <H1><A NAME="see also">SEE ALSO</A></H1>
  76. <P><A HREF="../lib/fields.html">the fields manpage</A></P>
  77. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  78. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  79. <STRONG><P CLASS=block> base - Establish IS-A relationship with base class at compile time</P></STRONG>
  80. </TD></TR>
  81. </TABLE>
  82.  
  83. </BODY>
  84.  
  85. </HTML>
  86.