Front page | perl.beginners |
Postings from May 2008
Documentation problem
From:
亂世貓熊
Date:
May 9, 2008 02:04
Subject:
Documentation problem
Hi all,
I have some problem on writing remarks on module.
<code>
use SomeMod ; # exported "BuildFather"
$x = BuildFather ( %argv ) ;
$x_child = $x -> GiveSomething ( %argv ) ;
$x_grandson = $x_child -> DoSomthingElse ( %argv ) ;
print $x_child -> {Value}{Provided}{by}{Grandson}
</code>
So, which is a class?
which is a method ?
which is a class method ?
which is child method ?
How do I presence if there's any inherit happen here ?
Is there any so-called super class exists here ?
Any pointers ?
Thank you very much !
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
-
Documentation problem
by 亂世貓熊