0
What is the difference between abstract and interface in java ?!
2 ответов
+ 1
An abstract class contains both abstract methods and non-abstract methods. So this class in NOT a completely abstract class.
An interface contains abstract methods only. So this class is a compeletely astract class.
0
Thank you :)