Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Can i have abstract class with no abstract methods?

Answer Posted / punit

Yes we can, try this example:
abstract class absDemo
{
void hello()
{
System.out.println("Hello abstract");
}
}
class ab extends absDemo
{
void hello1()
{
System.out.println("hello hello1");
}
}
class absDemo1
{
public static void main(String args[])
{
ab a=new ab();
a.hello1();
a.hello();
}

}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is space a character in java?

1014


Where is core java used?

1017


Define inheritance?

1021


What will be the initial value of an object reference which is defined as an instance variable?

1150


what is mutual exclusion? How can you take care of mutual exclusion using java threads? : Java thread

1124


Are registers volatile?

939


Will the compiler creates a default constructor if I have a parameterized constructor in the class?

1117


How will you get the platform dependent values like line separator, path separator, etc., ?

1028


What is array in java?

1005


I want to re-reach and use an object once it has been garbage collected. How it's possible?

1030


Which is bigger float or double?

975


explain the difference between jdk and jvm?

999


How do you identify independent and dependent variables?

1008


What is the difference between overriding and overloading in OOPS.

1165


How java enabled high performance?

1062