Answer Posted / priyabrata patro
inheritance , name only mentions here that inherit.Listen inherit means it can be occupied by another one like father properties go to his sons, observer some automobiles you can get inheritance meaning there only ,like hero honda passion and passion plus , so , there are a lot of instance available which are related to inheritance.
So, inheritance is nothing but ,in programming language, occupying the properties of one class by another class.
for instance
public class Idemo{
public staic void m(){}
public void m1(){}
}
public class Idemo1 extends Idemo
{
public static void main(String args[]){
Idemo1 i=new Idemo1();
i.m();
i.m1();
}
}
but here it can not be called as inheritance
interface I{void fun1()}
interface I1
{void fun();}
interface I2 extends I,I1
{}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of a parameter?
What is difference between final and finally in java?
What value is a variable of the string type automatically initialized?
How do you calculate square roots?
Can we create more than one object singleton class?
Explain aggregation in java?
What are synchronized methods ?
What is array initialization in java?
What is flag in java?
Why are the methods of the math class static?
What is multithreading and its advantages?
What are 5 boolean operators?
Can you instantiate the math class in Java?
Can bool be null?
What is autoboxing and unboxing?