Home / Questions / What is an abstract method?
Explanatory Question

What is an abstract method?

👁 4 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

A method without a body, declared using abstract.


abstract void run();

📌 Must be implemented by the subclass.