ในขณะที่สืบทอดคลาสใน C ++ ผู้ใช้สามารถระบุตัวระบุการเข้าถึงเช่น
class Base
{
public int mem1;
protected in mem2;
};
class Derived1 : **private** Base
{
// mem1 will be private here.
// mem2 will be private here.
};
class Derived2 : **protected** Base
{
// mem1 will be protected here.
// mem2 will be protected here.
};
class Derived2 : **public** Base
{
// mem1 will be public here.
// mem2 will be protected here.
};
แต่สิ่งเดียวกันนั้นไม่สามารถทำได้ใน Java เช่นการขยายใน java มักจะเหมือนกับการสืบทอด "สาธารณะ" ใน C ++
มีคนอธิบายเหตุผลนี้ได้ไหม