Author: jonathan
Date: Sun 29 12:21:25 2006
New Revision: 15051
Modified:
Log:
Add a note on constructors to the requirements.
Modified:
(original)
Sun 29 12:21:25 2006
@@ -41,6 +41,13 @@
.Net: Like attributes, methods may be public, private, protected or internal.
+=head2 Constructors
+A constructor is run when an object is instantiated.
+
+.Net: There may be many constructors for an object (provided they all have
+different signatures), and the correct one is called based upon the passed
+parameters.
+
=head2 Inheritance
Perl 6: Multiple inheritance.