in reply to RFC: new.pm - a perl -e use/new shortener

As a side note: new is not a builtin in Perl.

Classes are free to choose any method as constructor and are even free to have multiple of them.

Though I'm not aware of an example right now.

Update: this case is a negligence, no code needed, just mention in doc.

Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Je suis Charlie!

  • Comment on Re: RFC: new.pm - a perl -e use/new shortener (constructor)

Replies are listed 'Best First'.
Re^2: RFC: new.pm - a perl -e use/new shortener (constructor)
by Dallaylaen (Chaplain) on Dec 24, 2016 at 14:20 UTC

    Good point, say, DBI->connect(...); behaves much like a constructor. However, this would clutter the interface, making it less funny. And many Very::Long::Modules are in fact parts of a big production system that standardizes constructors. Maybe there is a way though, need to think more...

      As I already said, in the rare cases one can always fall back to explicit code.

      Just making it clear in documentation that some modules fail should be enough.

      Cheers Rolf
      (addicted to the Perl Programming Language and ☆☆☆☆ :)
      Je suis Charlie!