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

What is the properties class in java programming?

1054


whatis Home interface and Remoteinterface? with example?

2037


can any body body expalin best definitions & best real time exaples for opps concepts.

2318


What if static is removed from main method?

1108


How does map works in java?

1050


Can constructor return value?

1012


do I need to use synchronized on setvalue(int)? : Java thread

1052


Explain different types of thread priorities ?

1133


What is size of int in java?

1100


what is the purpose of the runtime class?

1107


What is a byte string?

1167


Difference between a class and an object?

1111


What is variable explain?

1050


Why java is considered dynamic?

1220


What is difference between identifier and variable?

1121