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 overload main method?

Answer Posted / atul

class mainoverloaded
{
public void main()
{
System.out.println("Hey");
}
public void main(int a)

{
System.out.println(a);
}
}
class maind
{
public static void main(String ah[])
{
mainoverloaded m=new mainoverloaded();
m.main();
m.main(10);
}

}
please execute this code.it is execute correctly.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the 6 functions?

979


How do you add an element to a set in java?

1041


What is continuity of a function?

1097


What is the SimpleTimeZone class?

2286


What's the difference between comparison done by equals method and == operator?

976


Does java allow default arguments?

1005


Can we have try without catch block?

1085


Is null a string or object in java?

973


What is a local class in java?

1049


When do I need to use reflection feature in java?

1088


What is variable in java?

991


How do you check if a number is a perfect square?

994


What restrictions are placed on method overriding in java programming?

1011


How do you achieve polymorphism in java?

1004


Describe the process as to how substring() methodology mechanisms in java.

1134