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
I want to persist data of objects for later use. What is the best approach to do so?
What is meant by 'bit masking' in java?
Is nan false?
What is difference between adapter class and listener?
How define set in java?
Define jit compiler?
Explain what do you mean by functional overloading in java?
Is 64bit faster than 32 bit?
What is meant by oops concept in java?
Explain the public class modifier?
How will you communicate between two applets?
Why is whitespace important?
What is variable and constant explain with example?
What is close method? How it's different from Finalize & Dispose?
Why is java called the platform independent programming language?