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 you have a constructor in abstract class?

Answer Posted / saurabh

public class xyz : abc
{
int r = 10;

public xyz()
{
r = 35;


}


}
public abstract class abc
{
public int i = 0;
public abc()
{
i = 10;
}
}

sure , we can create constructor in abstract class.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is java objectoutputstream?

942


what is method reference in java 8?

985


Define linked list and its features with signature?

945


What is return code?

959


How static variable work in java?

1069


What happens if a constructor is declared private?

980


What do you understand by copy constructor in java?

889


What is java abstraction with example?

995


what is the difference between the methods sleep() and wait()? : Java thread

916


What is navigable map in java?

945


What is variable argument in java?

958


What happens when you add a double value to a string?

947


What is string pooling concept?

1011


Define inheritance with reference to java.

1035


What is the use of accept () method in java?

1052