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 we inherit the constructor in a Class?please give one
example.

Answer Posted / amit

class demo
{
demo()
{
System.out.println("i am default constructor ");
}
}
class demo1 extends demo
{
demo1()
{
System.out.println("i am default constructor ");
}
}
class test
{
public static void main(String st[])
{
demo1 ob=new demo1();
}
}




but it is inherited constructor ....so be can say inherited constructor or/not ?????????

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 <> used for in java?

1118


What is static keyword in java?

1001


What is early binding and late binding in java?

1194


How would you format a date in java? I.e. In the ddmmyyy format?

1381


How do you classify Dialog Box?

1123


What environment variables are required to be set on a machine in order to run Java programs?

1198


What are the two categories of data types in the java programming language?

994


What are peerless components in java programming?

1019


What is the difference between class & structure?

1230


What causes memory leak in java?

938


Does java list allow null?

997


What is a private class in java?

1057


Can a private method of a superclass be declared within a subclass?

1043


What is the maximum size of list in java?

976


Why to use nested classes in java? (Or) what is the purpose of nested class in java?

1073