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… Tags: abstract, extends, inheritence, method