1 / 60

Inheritance in Java

Inheritance in Java Inheritance in java is a mechanism in which one object acquires all the properties and behaviors of parent object.

laurenej
Download Presentation

Inheritance in Java

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Inheritance in Java Inheritance in java is a mechanism in which one object acquires all the properties and behaviors of parent object. The idea behind inheritance in java is that you can create new classes that are built upon existing classes. When you inherit from an existing class, you can reuse methods and fields of parent class, and you can add new methods and fields also. Inheritance represents the IS-A relationship, also known as parent-child relationship.

  2. Why use inheritance in java • For Method Overriding (so runtime polymorphism can be achieved). • For Code Reusability. • Syntax of Java Inheritance • class Subclass-name extends Superclass-name   • {   •    //methods and fields   • }   • The extends keyword indicates that you are making a new class that derives from an existing class.In the terminology of Java, a class that is inherited is called a super class. The new class is called a subclass.

  3. Understanding the simple example of inheritance

  4. As displayed in the above figure, Programmer is the subclass and Employee is the superclass. Relationship between two classes is Programmer IS-A Employee.It means that Programmer is a type of Employee. • class Employee{   •  float salary=40000;   • }   • class Programmer extends Employee{   •  int bonus=10000;   •  public static void main(String args[]){   •    Programmer p=new Programmer();   •    System.out.println("Programmer salary is:"+p.salary);   •    System.out.println("Bonus of Programmer is:"+p.bonus);   • }   • }   • Programmer salary is:40000.0 • Bonus of programmer is:10000 • In the above example, Programmer object can access the field of own class as well as of Employee class i.e. code reusability.

  5. Types of inheritance in java On the basis of class, there can be three types of inheritance in java: single, multilevel and hierarchical. In java programming, multiple and hybrid inheritance is supported through interface only. We will learn about interfaces later.

  6. Note: Multiple inheritance is not supported in java through class. When a class extends multiple classes i.e. known as multiple inheritance. For Example:

  7. Why multiple inheritance is not supported in java? • To reduce the complexity and simplify the language, multiple inheritance is not supported in java. • Consider a scenario where A, B and C are three classes. The C class inherits A and B classes. If A and B classes have same method and you call it from child class object, there will be ambiguity to call method of A or B class. • Since compile time errors are better than runtime errors, java renders compile time error if you inherit 2 classes. So whether you have same method or different, there will be compile time error now. • class A{   • void msg(){System.out.println("Hello");}   • }   • class B{   • void msg(){System.out.println("Welcome");}   • }   • class C extends A,B{//suppose if it were   •  Public Static void main(String args[]){   •    C obj=new C();   •    obj.msg();//Now which msg() method would be invoked?   • }   • }   • Compile Time Error

  8. super keyword in java • The super keyword in java is a reference variable that is used to refer immediate parent class object. • Whenever you create the instance of subclass, an instance of parent class is created implicitly i.e. referred by super reference variable. • Usage of java super Keyword • super is used to refer immediate parent class instance variable. • super() is used to invoke immediate parent class constructor. • super is used to invoke immediate parent class method.

  9. super is used to refer immediate parent class instance variable. • Problem without super keyword • class Vehicle{   •   int speed=50;   • }   • class Bike3 extends Vehicle{   •   int speed=100;   •   void display(){   •    System.out.println(speed);//will print speed of Bike    •   }   •   public static void main(String args[]){   •    Bike3 b=new Bike3();   •    b.display();   • }   • }   • Output:100

  10. Solution by super keyword • //example of super keyword   • class Vehicle{   •   int speed=50;   • }   • class Bike4 extends Vehicle{   •   int speed=100;   •   void display(){   •    System.out.println(super.speed);//will print speed of Vehicle now   •   }   •   public static void main(String args[]){   •    Bike4 b=new Bike4();   •    b.display();   • }   • }   • Output:50

  11. super is used to invoke parent class constructor. • class Vehicle{   •   Vehicle(){System.out.println("Vehicle is created");}   • }   • class Bike5 extends Vehicle{   •   Bike5(){   •    super();//will invoke parent class constructor   •    System.out.println("Bike is created");   •   }   •   public static void main(String args[]){   •    Bike5 b=new Bike5();   • }   • }   • Output:Vehicle is created • Bike is created • Note: super() is added in each class constructor automatically by compiler.

  12. As we know well that default constructor is provided by compiler automatically but it also adds super() for the first statement. If you are creating your own constructor and you don't have either this() or super() as the first statement, compiler will provide super() as the first statement of the constructor.

  13. Another example of super keyword where super() is provided by the compiler implicitly. • class Vehicle{   •   Vehicle(){System.out.println("Vehicle is created");}   • }   • class Bike6 extends Vehicle{   •   int speed;   •   Bike6(int speed){   •     this.speed=speed;   •     System.out.println(speed);   •   }   •   public static void main(String args[]){   •    Bike6 b=new Bike6(10);   •  }   • }   • Output:Vehicle is created • 10

  14. super can be used to invoke parent class method • class Person{   • void message(){System.out.println("welcome");}   • }   • class Student16 extends Person{   • void message(){System.out.println("welcome to java");}   • void display(){   • message();//will invoke current class message() method   • super.message();//will invoke parent class message() method   • }   • public static void main(String args[]){   • Student16 s=new Student16();   • s.display();   • }   • }   • Output:welcome to java • welcome

  15. Program in case super is not required • class Person{   • void message(){System.out.println("welcome");}   • }   • class Student17 extends Person{   • void display(){   • message();//will invoke parent class message() method   • }   • public static void main(String args[]){   • Student17 s=new Student17();   • s.display();   • }   • }   • Output:welcome

  16. Final Keyword In Java • The final keyword in java is used to restrict the user. The java final keyword can be used in many context. Final can be: • variable • method • Class • The final keyword can be applied with the variables, a final variable that have no value it is called blank final variable or uninitialized final variable. It can be initialized in the constructor only. The blank final variable can be static also which will be initialized in the static block only. We will have detailed learning of these. Let's first learn the basics of final keyword.

  17. Java final variable If you make any variable as final, you cannot change the value of final variable(It will be constant). Example of final variable There is a final variable speedlimit, we are going to change the value of this variable, but It can't be changed because final variable once assigned a value can never be changed. class Bike9{   finalint speedlimit=90;//final variable void run(){     speedlimit=400;    }   publicstaticvoid main(String args[]){    Bike9 obj=new  Bike9();    obj.run();    }   }//end of classt N Output:Compile Time Error

  18. Java final method If you make any method as final, you cannot override it. Example of final method class Bike{   finalvoid run(){System.out.println("running");}   }   class Honda extends Bike{   void run(){System.out.println("running safely with 100kmph");}   publicstaticvoid main(String args[]){      Honda honda= new Honda();      honda.run();      }   }  st it Now Output:Compile Time Error

  19. Java final class If you make any class as final, you cannot extend it. Example of final class finalclass Bike{}   class Honda1 extends Bike{   void run(){System.out.println("running safely with 100kmph");}   publicstaticvoid main(String args[]){     Honda1 honda= new Honda();     honda.run();     }   }   Test it Now Output:Compile Time Error

  20. Is final method inherited? Ans) Yes, final method is inherited but you cannot override it. For Example: class Bike{   finalvoid run(){System.out.println("running...");}   }   class Honda2 extends Bike{   publicstaticvoid main(String args[]){   new Honda2().run();      }   }   Test it Now Output:running...

  21. What is blank or uninitialized final variable? A final variable that is not initialized at the time of declaration is known as blank final variable. If you want to create a variable that is initialized at the time of creating object and once initialized may not be changed, it is useful. For example PAN CARD number of an employee. It can be initialized only in constructor. Example of blank final variable class Student{   int id;   String name;   final String PAN_CARD_NUMBER;   ...   }  

  22. Can we initialize blank final variable? Yes, but only in constructor. For example: classBike10{ finalintspeedlimit;//blankfinalvariable Bike10(){ speedlimit=70; System.out.println(speedlimit); } publicstaticvoidmain(Stringargs[]){ newBike10(); } } Test it Now Output:70

  23. static blank final variable A static final variable that is not initialized at the time of declaration is known as static blank final variable. It can be initialized only in static block. Example of static blank final variable class A{   staticfinalint data;//static blank final variable static{ data=50;}   publicstaticvoid main(String args[]){       System.out.println(A.data);    }   }  

  24. What is final parameter? If you declare any parameter as final, you cannot change the value of it. class Bike11{   int cube(finalint n){      n=n+2;//can't be changed as n is final    n*n*n;     }   publicstaticvoid main(String args[]){       Bike11 b=new Bike11();       b.cube(5);    }   }  est it Now Output:Compile Time Error

  25. Can we declare a constructor final? No, because constructor is never inherited.

  26. Polymorphism in Java Polymorphism in java is a concept by which we can perform a single action by different ways. Polymorphism is derived from 2 greek words: poly and morphs. The word "poly" means many and "morphs" means forms. So polymorphism means many forms. There are two types of polymorphism in java: compile time polymorphism and runtime polymorphism. We can perform polymorphism in java by method overloading and method overriding. If you overload static method in java, it is the example of compile time polymorphism. Here, we will focus on runtime polymorphism in java.

  27. Runtime Polymorphism in Java Runtime polymorphism or Dynamic Method Dispatch is a process in which a call to an overridden method is resolved at runtime rather than compile-time. In this process, an overridden method is called through the reference variable of a superclass. The determination of the method to be called is based on the object being referred to by the reference variable. Let's first understand the upcasting before Runtime Polymorphism.

  28. Upcasting When reference variable of Parent class refers to the object of Child class, it is known as upcasting. For example: • class A{}   • class B extends A{}   • A a=new B();//upcasting

  29. Example of Java Runtime Polymorphism • In this example, we are creating two classes Bike and Splendar. Splendar class extends Bike class and overrides its run() method. We are calling the run method by the reference variable of Parent class. Since it refers to the subclass object and subclass method overrides the Parent class method, subclass method is invoked at runtime. • Since method invocation is determined by the JVM not compiler, it is known as runtime polymorphism. • class Bike{   • void run(){System.out.println("running");}   • }   • class Splender extends Bike{   • void run(){System.out.println("running safely with 60km");}   • publicstaticvoid main(String args[]){   •     Bike b = new Splender();//upcasting •     b.run();   •   }   • }   • Output:running safely with 60km.

  30. Java Runtime Polymorphism with data member Rule: Runtime polymorphism can't be achieved by data Members.

  31. class Bike{   • int speedlimit=90;   • }   • class Honda3 extends Bike{   • int speedlimit=150;   • publicstaticvoid main(String args[]){   •   Bike obj=new Honda3();   •   System.out.println(obj.speedlimit);//90 • }   • Output:90

  32. Java Runtime Polymorphism with Multilevel Inheritance • Let's see the simple example of Runtime Polymorphism with multilevel inheritance. • class Animal{   • void eat(){System.out.println("eating");}   • }   • class Dog extends Animal{   • void eat(){System.out.println("eating fruits");}   • }   • class BabyDog extends Dog{   • void eat(){System.out.println("drinking milk");}   • publicstaticvoid main(String args[]){   • Animal a1,a2,a3;   • a1=new Animal();   • a2=new Dog();   • a3=new BabyDog();   • a1.eat();   • a2.eat();   • a3.eat();   • }   • }   • Output: eating eating fruits drinking Milk

  33. Abstract class in Java A class that is declared with abstract keyword, is known as abstract class in java. It can have abstract and non-abstract methods (method with body).

  34. Abstraction in Java Abstraction is a process of hiding the implementation details and showing only functionality to the user. Another way, it shows only important things to the user and hides the internal details for example sending sms, you just type the text and send the message. You don't know the internal processing about the message delivery. Abstraction lets you focus on what the object does instead of how it does it. Ways to achieve Abstaction There are two ways to achieve abstraction in java Abstract class (0 to 100%) Interface (100%

  35. Abstract class in Java A class that is declared as abstract is known as abstract class. It needs to be extended and its method implemented. It cannot be instantiated. Example abstract class abstract class A{}   abstract method Example abstract method abstract void printStatus();//no body and abstract 

  36. Example of abstract class that has abstract method • In this example, Bike the abstract class that contains only one abstract method run. It implementation is provided by the Honda class. • abstract class Bike{   •   abstract void run();   • }   • class Honda4 extends Bike{   • void run(){System.out.println("running safely..");}   • public static void main(String args[]){   •  Bike obj = new Honda4();   •  obj.run();   • }   • }   • running safely..

  37. Abstract class having constructor, data member, methods etc. • An abstract class can have data member, abstract method, method body, constructor and even main() method. • File: TestAbstraction2.java • //example of abstract class that have method body   •  abstract class Bike{   •    Bike(){System.out.println("bike is created");}   •    abstract void run();   •    void changeGear(){System.out.println("gear changed");}   •  }   •  class Honda extends Bike{   •  void run(){System.out.println("running safely..");}   •  }   •  class TestAbstraction2{   •  public static void main(String args[]){   •   Bike obj = new Honda();   •   obj.run();   •   obj.changeGear();   •  }   • }   • bike is created • running safely.. • gear changed

  38. Rule: If there is any abstract method in a class, that class must be abstract. • class Bike12{   • abstract void run();   • }   • compile time error • Rule: If you are extending any abstract class that have abstract method, you must either provide the implementation of the method or make this class abstract.

  39. Another example of abstract class in java • File: TestBank.java •  abstract class Bank{     • abstract int getRateOfInterest();     • }     • class SBI extends Bank{     • int getRateOfInterest(){return 7;}     • }     • class PNB extends Bank{     • int getRateOfInterest(){return 7;}     • }     • class TestBank{     • public static void main(String args[]){     • Bank b=new SBI();//if object is PNB, method of PNB will be invoked     • int interest=b.getRateOfInterest();     • System.out.println("Rate of Interest is: "+interest+" %");     • }}     • Rate of Interest is: 7 %

  40. Interface in Java An interface in java is a blueprint of a class. It has static constants and abstract methods only. The interface in java is a mechanism to achieve fully abstraction. There can be only abstract methods in the java interface not method body. It is used to achieve fully abstraction and multiple inheritance in Java. Java Interface also represents IS-A relationship. It cannot be instantiated just like abstract class.

  41. Why use Java interface? There are mainly three reasons to use interface. They are given below. It is used to achieve fully abstraction. By interface, we can support the functionality of multiple inheritance. It can be used to achieve loose coupling. The java compiler adds public and abstract keywords before the interface method and public, static and final keywords before data members. In other words, Interface fields are public, static and final bydefault, and methods are public and abstract.

  42. Understanding relationship between classes and interfaces As shown in the figure given below, a class extends another class, an interface extends another interface but a class implements an interface.

  43. Simple example of Java interface • interface printable{   • void print();   • }   • class A6 implements printable{   • public void print(){System.out.println("Hello");}   • public static void main(String args[]){   • A6 obj = new A6();   • obj.print();   •  }   • }   • Output:Hello

  44. Multiple inheritance in Java by interface If a class implements multiple interfaces, or an interface extends multiple interfaces i.e. known as multiple inheritance.

  45. interface Printable{   • void print();   • }   • interface Showable{   • void show();   • }   • class A7 implements Printable,Showable{   • public void print(){System.out.println("Hello");}   • public void show(){System.out.println("Welcome");}   • public static void main(String args[]){   • A7 obj = new A7();   • obj.print();   • obj.show();   •  }   • }   • Output:Hello Welcome

  46. Multiple inheritance is not supported through class in java but it is possible by interface, why? • interface Printable{   • void print();   • }   • interface Showable{   • void print();   • }   • class testinterface1 implements Printable,Showable{   • public void print(){System.out.println("Hello");}   • public static void main(String args[]){   • testinterface1 obj = new testinterface1();   • obj.print();   •  }   • }   • Hello • As you can see in the above example, Printable and Showable interface have same methods but its implementation is provided by class A, so there is no ambiguity.

More Related