Implicit inheritance in Perl

Source: Internet
Author: User
Implicit inheritance in Perl Implicit inheritance
Today, I saw a disconnection. Code :

A. PM

Code: [copy to clipboard] Package;

...

Sub test {
Print "test \ n ";
}

B. PM

Code: [copy to clipboard] Package B;
Use;

B-> test ();

I think it is strange that B does not explicitly inherit from A. Why can I use the test function of?

Finally, we found that the import function was rewritten in A. PM.

Code: [copy to clipboard] sub import {
My $ class =$ _ [0];
My $ caller = caller (0 );
Unless ($ caller-> ISA ('A ')){

No strict 'refs ';
Print "importing a \ n ";
Push @ {"$ caller \: ISA"}, $ class;

}

}

Caller refers to the call stack. Caller (0) is the top package name. Because B calls the import of A, it is 'B'
B: ISA is the parent class array.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.