Moha Hasim Siddiqui
hasim
2 Answer(s)      2 years ago
Posted in : Java Interview Questions

if u can possible create the constructor in abstract class?

View Answers

May 26, 2011 at 5:22 PM


yes, you can have constructor in abstract class.But you cannot make instance of the abstract class. Instead, you can make a reference to that abstract class.

abstract class Test{ abstract void method(); Test(){ System.out.println("Abstract class constructor"); } } public class AbstractClassExample extends Test{ void method(){ } public static void main(String args[]){ Test t= new AbstractClassExample(); } }


May 26, 2011 at 5:22 PM


yes, you can have constructor in abstract class.But you cannot make instance of the abstract class. Instead, you can make a reference to that abstract class.

abstract class Test{
    abstract void method();
    Test(){
        System.out.println("Abstract class constructor");
    }
   }
   public class AbstractClassExample extends Test{
    void method(){
    }
    public static void main(String args[]){
    Test t= new AbstractClassExample();
    }
}









Related Pages:
open taps CRM
open taps CRM  hi Plese guide to me how to forecase in Java Ofbiz Opentaps CRM Module Thanks hasim

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.