“наследство в ООП” Ответ

наследство в ООП

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

наследство в упс

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

Ответы похожие на “наследство в ООП”

Вопросы похожие на “наследство в ООП”

Больше похожих ответов на “наследство в ООП” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования