Detailed explanation of abstract keyword definition and usage examples in PHP

伊谢尔伦
Release: 2023-03-12 12:18:02
Original
2080 people have browsed it

Abstract method refers to a method without a method body. As long as there is a method in a class that is an abstract method, then this class must be defined as Abstract class. Friends who don’t understand can take a look

PHP abstract methods and abstract classes abstract keyword
abstract keyword is used to define abstract methods and abstract classes.

Abstract method

Abstract method refers to a method without a method body. Specifically, when the method is declared, there are no {} brackets and the contents within it, but directly in the declaration. End with a semicolon after the method name.

abstract keyword is used to define abstract methods, syntax:
abstract function function_name();

Abstract class

As long as it is in one class If a method is an abstract method, then this class must be defined as an abstract class. Abstract classes are also defined using the abstract keyword.
Abstract classes cannot generate instancesObjects, abstract methods are usually used as templates for subclassesMethod overloading, and all methods in the inherited abstract class must be accomplish. In fact, abstract classes are introduced to facilitate inheritance.

Example:

The code is as follows:

<?php 
abstract class AbstractClass{ 
// 定义抽象方法 
abstract protected function getValue(); 
// 普通方法 
public function printOut(){ 
print $this->getValue()."<br />"; 
} 
} 
class ConcreteClass 
extends
 AbstractClass{ 
protected function getValue(){ 
return
 "抽象方法的实现"; 
} 
} 
$class1 = new ConcreteClass; 
$class1->printOut(); 
?>
Copy after login

In this example, the parent class defines the abstract method and the implementation of the method, but the actual content is defined in subclasses.

The above is the detailed content of Detailed explanation of abstract keyword definition and usage examples in PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!