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 static methods be overridden?

Answer Posted / sumit pal singh

static class Class1 {
    public static int Method1(){
          return 0;
    }
}
static class Class2 extends Class1 {
    public static int Method1(){
          return 1;
    }




}
public static class Main {
    public static void main(String[] args){
            
          Class1.Method1();
          Class2.Method1();
    }
}

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we have try without catch block?

1030


Explain, java is compatible with all servers but not all browsers?

1004


What type of variable is gender?

932


How many types of the indexof method are there for strings?

920


Write a program to print all permutations of string?

1064


I want to store more than 10 objects in a remote server? Which methodology will follow?

3123


What is printwriter in java?

901


Can keyword be used as identifier?

898


Is string a data type in java?

976


How can we find the actual size of an object on the heap?

1261


Can we pass null as argument in java?

892


What is final method in java?

966


Differentiate between class and structure.

1058


what do you mean by classloader in java?

974


Which class represents the socket that both the client and server use to communicate with each other?

972