Submitted Questions

  • Use of abstract class and interface

    What is the exact use of abstract class and interface?

    Vinodh Avala

    • May 23rd, 2012

    Abstract class is like any normal class with the only difference that it cannot be instantiated on its own. Normal class operations like constructor overloading, method overloading etc can be done.An ...