Home  >  Article  >  Backend Development  >  The difference between overload and override in PHP

The difference between overload and override in PHP

墨辰丷
墨辰丷Original
2018-05-25 14:57:221369browse

This article mainly introduces the difference between overload and override in PHP. It has a very good reference value. Let’s take a look at it with the editor.

override (rewrite, override)

1. Method name, parameters, return value same.

2. Subclass methods cannot reduce the access rights of parent class methods.

3. Subclass methods cannot throw more exceptions than parent class methods (but subclass methods do not need to throw exceptions).

4. Exists between parent class and subclass.

5. Methods are defined as final and cannot be overridden.

overload (overload, overload)

1. At least one of the parameter type, number, and order is different.

2. Method names with different return values ​​cannot be overloaded.

3. Exists in parent class, subclass, and same class.

Method overriding and overloading are different manifestations of Java polymorphism.

Overriding is a manifestation of polymorphism between parent classes and subclasses, while overloading is a manifestation of polymorphism in a class.

If a method defined in a subclass has the same name and parameters as its parent class, we say that the method is overriding (Overriding). When an object of a subclass uses this method, the definition in the subclass will be called. For it, the definition in the parent class will be "shielded".

If multiple definitions with the same name are defined in a class Methods that may have different numbers of parameters, different parameter types, or different parameter orders are called method overloading. It cannot be overloaded through access permissions, return types, and thrown exceptions.

1. Override characteristics

1. The flag of the overridden method must be and be overridden The overriding effect can only be achieved by completely matching the flags of the method;

2. The return value of the overridden method must be consistent with the return value of the overridden method;

3. The overridden method throws The exception thrown must be consistent with the exception thrown by the overridden method, or its subclass;

4. The overridden method cannot be private, otherwise it will just define a new method in its subclass , and it is not covered.

2. Overload features

1. When using overload, you can only use different parameter styles. For example, different parameter types, different number of parameters, different parameter order (of course, several parameter types in the same method must be different, for example, it can be fun(int, float), but it cannot be fun(int, int ));

2. It cannot be overloaded by access permissions, return types, and thrown exceptions;

3. The exception type and number of methods will not affect overloading;

4. For inheritance, if a method has privileged access in the parent class, it cannot be overloaded in the subclass. If it is defined, it will only define a new method. It will not achieve the effect of overloading.

The above is the entire content of this article, I hope it will be helpful to everyone's study.


Related recommendations:

Introducing the differences and connections between override and overload

PHP object-oriented - Detailed introduction to simulating method overloading in general object-oriented languages ​​(overload)

PHP-oriented Object - Sample code detailing overloading (overloading)

The above is the detailed content of The difference between overload and override in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn