Let’s take a look at the analysis of abstract classes and abstract methods in PHP. I hope this article will be helpful to all students.
In object-oriented (OOP) languages, a class can have one or more subclasses, and each class has at least one public method as an interface for external code to access. Abstract methods are introduced to facilitate inheritance. Now let’s take a look at how abstract classes and abstract methods are defined and their characteristics.
What is an abstract method? The method we define in the class with only the method name and no method body is an abstract method. The so-called no method body means that there is no curly braces and the content in the method when it is declared. Instead, when it is declared directly, a semicolon is added after the method name. , In addition, when declaring an abstract method, add a keyword "abstract" to modify it.
1. Abstract keyword: abstract
Abstract means that it cannot be explained exactly, but it has a certain concept or name. To declare an abstract class or method in PHP, we need to use the abstract keyword.
2. Definition of abstract methods and abstract classes
At least one method in a class is abstract, we call it an abstract class. So if you define an abstract class, first define the abstract method.
abstract class class1{
abstract function fun1();
…
}
2. Abstract methods are not allowed to contain { }
3. Abstract
must be added before the abstract method
3. Rules for using abstract classes and methods
Several characteristics of abstract classes:
2. In inherited derived classes, all abstract methods must be overloaded before they can be instantiated
The statement about abstract methods is as follows:
The code is as follows | Copy code |
代码如下 | 复制代码 |
abstract function fun1(); ?> |
?>
代码如下 | 复制代码 |
abstract class User{ //定义抽象类 class vipUser extends User{ $user=new vipUser(); //实例化子类 |
The code is as follows | Copy code |
abstract class User{ //Define abstract class abstract protected function getUser(); //Define abstract method Public function print_content(){ print $this->getUser(); } } class vipUser extends User{ protected function getUser(){ return "Abstract class and abstract method"; } } $user=new vipUser(); //Instantiate subclass $user->print_content(); //Abstract class and abstract method ?> |
Note: When an abstract class inherits another abstract class (the purpose is to extend the abstract class), it cannot override the abstract method of the parent class.
In PHP5.1, static abstract methods are supported in abstract classes. In the example below, we see that static abstract methods can be declared. When implementing this method, it must be a static method.
The code is as follows
|
Copy code | ||||
protected static $sal=0;
?>