Object-php inheritance question: why can I access the private attributes of the parent class?

Source: Internet
Author: User
Name $ name; $ this-& gt; age $ age;} publicfunctionshow () {echo $ this-& gt; name. & quot; | & quot ;. $ this-& gt; age ;}} classChildextendsPerson {}$ childnewChild (& quot; aaa & quot;, 5); $ child-& gt; show ();? & Gt; Why is aaa printed? | 5 subclass does not inherit the show () method of the parent class, and then the parent class object is inherited by php.

Class Person {
Private $ name;
Private $ age;

Public function _ construct ($ name, $ age) {$ this-> name = $ name; $ this-> age = $ age;} public function show () {echo $ this-> name. "| ". $ this-> age ;}} class Child extends Person {}$ child = new Child ("aaa", 5); $ child-> show ();

?>

Why is aaa printed? | 5

Shouldn't the subclass inherit the show () method of the parent class, and then $ this in the parent class method should not refer to the object instance of the subclass?
However, when the subclass is inherited, it should not inherit the private member attribute of the parent class.

So why can I print something ???

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.