what is abstract method with example?
Answer Posted / vikram
Hi Gopal, well I will explain u abstract methods in
layman's language. Sometimes, we want a method to perform
different functionalities. for eg. if suppose we have a
method dat finds d the area of geometric figures. Now every
geometric figure has different formula for calculating the
area. In dat case we go for abstract methods. where we just
declare a method by any name, in our case let it be "area
()". Now we can construct the body of this method depending
upon the type of geometric figure and the formula required
to find its area, seperately for all geopmetric figures.
But we will use the same name "area()" for all the methods
dat we define below to find the areas. I hope u got a vague
picture of abstract methods.
| Is This Answer Correct ? | 26 Yes | 7 No |
Post New Answer View All Answers
What are internal and external variables?
What is the difference between Java and C++?
What is connection class in java?
What is map in java?
What is the format specifier?
what are the high-level thread states? : Java thread
List some important features of java 10 release?
When would you use a static class?
How do you sing an Applet ?
Why does java have two ways to create child threads? Which way is better?
What is the purpose of the main method?
List some oops concepts in java?
What is a instance variable?
What is main in java?
What is this () in java?