Question on Abstraction | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Question on Abstraction

What is the difference between the following snippets of code: abstract class Animal{ abstract void makeSound(); } class Cat extends Animal{ public void makeSound(){ System.out.println("Meow! Meow!"); } } public class MyProgram{ public static void main(String[] args){ Animal cat = new Cat(); cat.makeSound(); } } and class Cat{ public void makeSound(){ System.out.println("Meow! Meow!"); } } public class MyProgram{ public static void main(String[] args){ Cat cat = new Cat(); cat.makeSound(); } } They both print "Meow! Meow!" but the upper one is an abstraction. What is the value of having an abstraction in this case?

9th May 2017, 2:45 PM
Kaien Yang
Kaien Yang - avatar
1 Answer
+ 19
Abstraction is necessary as the abstract classes may not be instantiated, and require subclasses to provide implementations for the abstract methods. That's very handy for me! :-D
9th May 2017, 2:56 PM
Dev
Dev - avatar