c++ protected 和 private修饰的构造函数: 1.在类的外部创建对象时,不能调用protected或private修饰的构造函数. 2.当子类中的构造函数调用父类的private构造函数时会错,当子类中的构造函数调用父类中的 public或protected构造函数时是对的. #include <iostream> using namespace std; //////////////////////////////////////////////// class A { p…
<?php class father{ //定义father类 //定义private修饰的类成员和方法 private $hair='curly hair'; private function smoke(){ echo '我有吸烟的习惯.'; } } class son extends father{ //定义继承自father类的son类 //定义访问private修饰的类成员的方法 public function get_property(){ $this->hair; $this-&…