English

In what way does the access specifier of the base class have access control over the derived class? Show with the help of an example. - Computer Applications

Advertisements
Advertisements

Question

In what way does the access specifier of the base class have access control over the derived class? Show with the help of an example. 

Code Writing
Short Answer

Solution

  1. Assume Science is the base class (super class) and Physics is its derived class.
  2. If class Science is public or protected, the subclass Physics can access all base class data elements.
  3. If class Science is declared private or there is no access specifier, subclass Physics will not have access to the base class's data members.
  4. Example: 
    class A {
        public int x;
        protected int y;
        private int z;
    
        public A() {
            x = 10;
            y = 20;
            z = 30;
        }
    
        public int sum() {
            return x + y + z;
        }
    }
    
    class B extends A {
        int total;
    
        void computeTotal() {
            /*
             * Public method sum() of base class
             * is accessible here
             */
            total = sum();
        }
    
        void display() {
            /*
             * x is accessible as it is public
             */
            System.out.println("x = " + x);
    
            /*
             * y is accessible as it is protected
             */
            System.out.println("y = " + y);
    
            /*
             * This will give ERROR!!!
             * z is not accessible as it is private
             */
            System.out.println("z = " + z);
        }
    }
shaalaa.com
  Is there an error in this question or solution?
Chapter 8: Encapsulation and Inheritance - EXERCISES [Page 446]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 8 Encapsulation and Inheritance
EXERCISES | Q V. 13. | Page 446
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×