It happens often in LPC. It's a language mostly used for
building MUDs. Often you will have a standard weapon
class and a standard wearable class. All weapons inherit
from the weapon class, while all wearables inherit from
the wearable class. But boxing gloves would inherit from
both.
Some problems LPC has with multiple inheritance aren't found
in Perl (for instance, the possibility of duplicating variables
when a class is inherited by two paths - different implementations
of LPC solve it differently). Other things are solved differently,
for instance, one flavour of LPC forbids inheriting from two
classes if they have methods with the same name - unless the
inheriting class defines a method with that same name.
There is nothing wrong with multiple inheritance. It's just
hard to implement is right, which is way some languages take
the easy way out and outright forbid it. Inheritance is already
a hard problem in Perl, but multiple inheritance is a real
nightmare. But that's the fault of Perl, not of multiple
inheritance.
Abigail
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.