हिंदी

With the help of an example explain how you can access a private member of a base class. - Computer Applications

Advertisements
Advertisements

प्रश्न

With the help of an example explain how you can access a private member of a base class. 

लघु उत्तरीय

उत्तर

A private member of a base class can be accessed by calling the base class's public method that returns the private member. This is shown in the example below. 

class A {
    private int x;

    public A() {
        x = 10;
    }

    public int getX() {
        return x;
    }
}

class B extends A {
    public void showX() {
        System.out.println("Value of x = " + getX());
    }
}
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 8: Encapsulation and Inheritance - EXERCISES [पृष्ठ ४४६]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 8 Encapsulation and Inheritance
EXERCISES | Q V. 10. | पृष्ठ ४४६
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×