Calling Foo::new() calls the function new in the package Foo as a direct function call. It doesn't magically put the class name in the first element of @_ in Foo::new(). The call is completely different.
This example will show that:
# this is the file Foo.pm
package Foo;
use strict;
use warnings;
sub new {
my $class = shift @_;
print "class = $class\n";
my $self = {};
return bless $self, $class;
}
1;
# heres a test program using it, called foo_test.pl
#
#!/usr/bin/perl
use strict;
use warnings;
use Foo;
use Data::Dumper;
{
print "Arrow test:\n";
my $regular_foo = Foo->new();
print Dumper($regular_foo);
print "\n\nColon test:\n";
my $colon_foo = Foo::new();
print Dumper($colon_foo);
}
And heres the output from running foo_test.pl
Arrow test:
class = Foo
$VAR1 = bless( {}, 'Foo' );
Colon test:
Use of uninitialized value in concatenation (.) or string at Foo.pm li
+ne 9.
class =
Use of uninitialized value in bless at Foo.pm line 13.
Explicit blessing to '' (assuming package main) at Foo.pm line 13.
$VAR1 = bless( {}, 'main' );
I use the most powerful debugger available: print!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.