No offense intended.

The remark that "sustained object-orientation in Perl is difficult …" is just my own fancy way of saying that “treating everything as an object is difficult/manual in Perl”. Data will always enter your program in its raw primitive form, and while you can objectify it (bless it), the lack of a native type system means that your classes and methods can’t be certain of the type of data they’re being passed, which forces you into a position of defensive programming. Consider the following examples (you made a routine and you want to compare anything passed in) ...

Note: smatchmatch is experimental and not recommended for production use

sub compare_things { $_[0] ~~ $_[1] }

example #1

compare_things(1, '') ''

example #2

compare_things('', '') 1

example #3

compare_things(1, []) ''

example #4

compare_things(1, bless{}) Died! Smart matching a non-overloaded object breaks encapsulation

example #5

compare_things(0, '') ''

example #6

Venus::Number->new(0)->eq('') # DMMT and DWIM 1

example #7

Venus::Number->new(0)->tv('') # (tv) type and value equality 0

example #8

Venus::Number->new(0)->eq(bless{}) # DMMT and DWIM 0

"I am inevitable." - Thanos

In reply to Re^2: What if Perl had an OO standard library? by awncorp
in thread What if Perl had an OO standard library? by awncorp

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.