Advertisements
Advertisements
प्रश्न
Show with the help of an example, how the following base classes can be derived in class bill to fulfill the given requirement:
class Elect
{
String n;
float units;
public void setvalue()
{
n = "SOURABH"
units = 6879;
}
}
class Bill uses data members charge and a member function to calculate the bill at the rate of ₹ 3.25 per unit and displays the charge. Class Elect is inherited by class Bill by using private visibility.
कोड लेखन
उत्तर
Class elect can be derived in class bill as shown below:
class bill extends elect {
private double charge;
public void calc() {
charge = 3.25 * units;
System.out.println("Charge = " + charge);
}
}
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 8: Encapsulation and Inheritance - EXERCISES [पृष्ठ ४४६]