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...

what is the use of a super keyword?

Answer Posted / upasana das

example of inheritance using super keyword
class a
{
int x,y;
a(int i,int j)
{
x=i;
y=j;
System.out.println(" "+x+" "+y);
}
}
class b extends a
{
int g;
b(int i,int j)
{
super(i,j);
g=i+i*(j*j);
System.out.println(g);
}
}
class mab
{
public static void main(String args[])
{
b ob=new b(24,2);
}
}

output: 24 2
120

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Name primitive java types.

896


What is mime in java?

883


What is setstring method in java?

961


How can you work with permissions from your .net application? : java security

890


What is property file in java?

868


Do I really have to type in the programs in the book to try them out?

990


Can the main method be declared final?

1004


Describe the principles of oops.

889


What is type inference? Is type inference available in older versions like java 7 and before 7 or it is available only in java se 8?

896


Explain daemon thread.

956


What are orm tools in java?

992


What is a static method?

994


What is jsr in java?

895


What is loose coupling in java?

862


When is static variable loaded? Is it at compile time or runtime? When exactly a static block is loaded in java?

920