Method of overriding and overloading

Source: Internet
Author: User

 

Overloading: providing more than one method with the same name but with different signatures to distinguish them.

 

Overriding a method: replacing the superclass's implementation of a method with one of your own. The signatures must be identical, but the return type can vary in a participant way:

1) if the return type is a reference type then the overriding method can declare a return type that is a subtype of that declared by the superclass method.

2) If the return type is a primitive type, then the return type of the overriding method must be identical to that of the superclass method. it is an error if two methods differ only in return type and the compiler will reject your class.

The overriding methods have their own access specifiers. A subclass can change the access of a superclass's methods, but only to provide more access. A Method declared protected in the superclass can be redeclared protected (the usual thing to do) or declared public, but it cannot be declared private or have package access. making a method less accessible than it was in a superclass wocould violate the contract of the superclass, because an instance of the subclass wocould not be usable in place of a superclass instance.

The overriding method is also allowed to change other method modifiers. the synchronized, native, and strictfp modifiers can be freely varied.

The overriding method can, however, be made abstract, even though the superclass method was not.

Also, the overriding method's throws clause can be different from that of the superclass method's as long as every exception type listed in the overriding method is the same as or a subtype of the exceptions listed in the superclass's method.

Static members within a class whether fields or methods cannot be overridden.

 

 

Preference: the Java programming language, the fourth edition

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.