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
Is a class subclass of itself?
What is ++ a in java?
Are constructors methods?
What is ide with example?
What is the difference between length and size in java?
What is sortedset in java?
What is the difference between variable declaration and variable initialization?
What is time complexity algorithm?
what is singleton class in java?
Why main method is static in java?
Give a brief description of java socket programming?
Where is the find and replace?
What are the java ide’s?
how we can create packages in java?
What is stringreader?