What is an abstract method

An abstract method is a method whose implementation is deferred to a subclass.

Showing Answers 1 - 3 of 3 Answers

A method which has method declaration and definition but no method body is known as an abstract method i.e it is a method without any implementation(without braces, and followed by a semicolon),

abstract void add(int X, int Y);



  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions