Method of Overriding and Overloading

來源:互聯網
上載者: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 particular 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 would violate the contract of the superclass, because an instance of the subclass would 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》

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.