An abstract class is a class that is partially implemented. It provides design convenience. An abstract class consists of one…
September 14th, 2009
What will happen if we inherit an abstract class?
No Comments, Java Facts, by Daisy Williams.abstract class Ques0347A{ int x; int init(){ x = 15; return x; } abstract void disp(); } public class Ques0347…
August 24th, 2009
7 key points about abstract classes and methods.
No Comments, Java Facts, by Daisy Williams.If a class does not implement any or all of an interface method, then it should be declared as abstract….