“héritage dans la POO” Réponses codées

héritage dans la POO

to inherite all properties of parent class into itself is called inheritance
it is alse kown as "is-a" relationship 

types of inheritance supported by java :::
    1. single      (one class pro to other) 
    2. multilevel  (one class pro to a and a class to b class pro to another)
    3. hierarical  (one class pro to a class and b class)


android developer

héritage en oops

it is used to define relationship between two class, 
which a child class occurs all the properties and
behaviours of a parent class. 
Provides code reusability. We can implement by using
extend keyword
Ex: in my framework I have a TestBase class which I store 
all my reusable code and methods. My test execution classes and 
elements classes will extend the TestBase in order to reuse the code.
Obedient Ocelot

Réponses similaires à “héritage dans la POO”

Questions similaires à “héritage dans la POO”

Plus de réponses similaires à “héritage dans la POO” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code