我举例说下(高级编程中):
一,父类:
private GenericCustomer(){
    //more code.
}二,子类:
Nevermore60Costomerdescription :
在子类中会报这样的错误:
GenericCustomer() is inaccessible due to its protection level.
书是这样解释的:
        编译器试图为子类生成默认构造函数,但做不到,因为默认的构造函数应调用无参数的构造函数,而该构造函数声明为private ,就不能访问派生类。
不懂是怎么构造的…我的意思是,是理解为之类的修饰权限大于父类,它访问之类怎么和自己为private 有关…