Say I have a package called My::Pkg, and that package has a ->new(...) class method to instantiate new objects:
package My::Pkg;
sub new {bless {@_[1..$#_]} => $_[0]}
Is there any harm in defining the following subroutine:
sub My::Pkg {@_ ? My::Pkg::new('My::Pkg', @_) : 'My::Pkg'}
So that someone could write:
my $obj = My::Pkg one => 1, two => 2;
Rather than:
my $obj = My::Pkg->new(one => 1, two => 2); # which still works, but is longer
I like the terseness of the package-named-constructor-subroutine method, but I am interested to know if there are any hidden gotchas to this technique that I have not thought of.
Update:
Inheritance works correctly, as shown by the example here:
{package a; sub new {say "a::new [@_] ", $_[0]->init}}
{package b; our @ISA = 'a'; sub init {"(b::init [@_])"}}
{package a::b; our @ISA = 'b';}
sub a::b {print "absub [@_], "; 'a::b'}
# a::b() called with no args, returns 'a::b', which then becomes 'a::b'->new(...)
a::b->new; # absub [], a::new [a::b] (b::init [a::b])
a::b->new(1, 2, 3); # absub [], a::new [a::b 1 2 3] (b::init [a::b])
# no call to `a::b()` but otherwise the same:
'a::b'->new; # a::new [a::b] (b::init [a::b])
'a::b'->new(1, 2, 3); # a::new [a::b 1 2 3] (b::init [a::b])
new a::b::; # a::new [a::b] (b::init [a::b])
new a::b:: 1, 2, 3; # a::new [a::b 1 2 3] (b::init [a::b])
Interestingly the only thing so far that is different is that the following 2 lines become syntax errors:
new a::b;
new a::b 1, 2, 3;
Which is a syntax error for the same reason some_undefined_sub some_defined_sub; is one.
If the new subroutine is defined, it is parsed as new( a::b(...) ) which is normal for two adjacent bareword subroutines.
Personally, I am ok with new a::b becoming a syntax error, the unambiguous version new a::b:: will always work as tchrist helpfully points out below.
some_sub My::Pkg a=>1,b=>2;. It doesn't. – ikegami May 24 '11 at 21:22sub X::Y { die "X::Y() called\n" } sub X::Y::new { warn "X::Y::new() called\n" } sub new { die "main::new() called" } $a = new X::Y "business"; warn "got $a";will die because it callsmain::new(X::Y("business"))as a subroutine instead of properly invokingX::Y::new("X::Y", "business"))as a method. Also, the subroutine call doesn’t respect inheritance as is considered mandatory in an OO world. – tchrist May 24 '11 at 22:40new X::Y "business"suddenly means something different fromX::Y->new("business")— which BTW actually now meansX::Y()->new("business")instead of theX::Y::new("X::Y", "business")that everyone thinks it means. – tchrist May 24 '11 at 22:53sub My::Pkgline above, when given no arguments as in the case ofX::Y->new("business"), the subroutine always returns the string'X::Y', which then makes the method call look like'X::Y'->new("business"). So the method look-up is subject to normal inheritance, which in this case would end atX::Y::new("X::Y", "business"). – Eric Strom May 25 '11 at 0:34