search
HomeBackend DevelopmentPHP Tutorial[PHP] 抽象类与接口

抽象类是一种特殊的类, 接口是一种特殊的抽象类, 而多态就要使用到抽象类或是接口

抽象类

什么是抽象方法?

定义:在一个类中,没有方法体的方法就是抽象方法(就是一个方法没有使用{}而直接使用分号结束)

abstract function test();  //抽象方法 function test(){  //有方法体,但方法体为空的 } 

如果一个方法是抽象方法,就必须使用abstract修饰为什么要使用抽象方法?

什么是抽象类?

  1. 如果一个类中,有一个方法是抽象的则这个类就是抽象类

  2. 如果一个类是抽象类,则这个类必须要使用abstract修饰

  3. 抽象类是一种特殊的类,就是因为一个类中有抽象方法,其他不变。也可以在抽象类中声明成员属性,常量,非抽象的方法。

  4. 抽象类不能实例化对象(不能通过抽象类去创建一个抽象类的对象)

//普通的类class 类名{   }// 抽象类abstract class 类名 {   } abstract class Demo{  var a;  abstract function fun1();   function fun2()  {   }} 

抽象类的作用:

  1. 要想使用抽象类,就必须使用一个类去继承抽象类,而且要想使用这个子类,也就是让子类可以创建对象,子类就必须不能再是抽象类,子类可以重写父类的方法(给抽象方法加上方法体)。抽象方法中的方法没有方法体, 子类必须实现这个方法 (父类中没写具体的实现, 但子类必须有这个方法名)

  2. 列用抽象类,可以定义一些规范,让子类按这些规范去实现自己的功能

接口

  • 接口是一种特殊的抽象类, 抽象类又是一种特殊的类

  • 接口和抽象类是一样的作用

  • 抽象类提供了具体实现的标准,而接口则是纯粹的模版。接口只定义功能,而不包含实现的内容。接口用关键字 interface 来声明。

  • 因为PHP是单继承的, 如果使用抽象类,子类实现完抽象类就不能再去继承其它的类了。如果既想实现一些规范, 又想继承一个其他类。就要使用接口

声明方式

interface 接口名{  const 常量名 = 常量值;  //接口中的属性必须为常量  function 函数名();}echo 接口名::常量名; interface Demo{  const HOST = "localhost";  function fun();}echoDemo::HOST; //输出为localhost 

接口和抽象类的对比

  1. 作用相同,都不能创建对象, 都需要子类去实现

  2. 接口的声明和抽象类不一样

  3. 接口被实现的方式不一样

  4. 接口中的所有方法必须是抽象方法,只能声明抽象方法(而且不需要使用abstract修饰)

  5. 接口中的成员属性,只能声明常量,不能声明变量

  6. 接口中的成员访问权限 都必须是public, 抽象类中最低的权限protected

  7. 使用一个类去实现接口, 不是使用extends关键字, 而是使用implements这个词

    • 如果子类是重写父类接口中抽象方法,则使用 implements : 类–接口, 抽象类—接口 implements 。接口—接口 extends

使用 implements 的两个目的

1. 可以实现多个接口 ,而 extends 词只能继承一个父类

2. extends 和 implements 两个可以同时使用

注意:

  • 可以使用抽象类去实现接口中的部分方法
  • 如果想让子类可以创建对象,则必须实现接口中的全部抽象方法

  • 可以定义一个接口去继承另一个接口

  • 一个类可以去实现多个接口(按多个规范去开发子类), 使用逗号分隔多个接口名称

  • 一个类可以在继承父类的同时,去实现一个或多个接口(先继承,再实现)

多态

多态是面向对象的三大特性之一,是面向对象设计的重要特性。它展现了动态绑定(dynamic binding)的功能,也称为同名异式”(Polymorphism)。多态的功能可让软件在开发和维护时,达到充分的延伸性(extension)。事实上,多态最直接的定义就是让具有继承关系的不同类对象,可以对相同名称的成员函数调用,产生不同的反应效果。

以下是关于使用多态的一个 Demo :

<html>  <head>  <metacharset="utf-8">  head>  </html><?php  interface USB  //声明一个USB接口  {    function mount();    function work();    function unMount();  }    class UPan implements USB  //UPan实现了USB的功能  {    function mount()    {      echo "U盘挂载<br>";    }    function work()    {      echo "U盘工作<br>";    }    function unMount()    {      echo "U盘卸载成功<br>";    }  }   class Wire implements USB  //数据线实现了USB的功能  {    function mount()    {        echo "数据线挂载<br>";    }    function work()    {        echo "开始传输数据<br>";    }    function unMount()    {        echo "数据线卸载成功<br>";    }  }  class PC  //声明一个PC类  {    function USB($usb)    {        $usb->mount();        $usb->work();        $usb->unMount();    }  }   class Person  //声明一个Person类  {    function usePC()    {      $pc = new PC;      $upan = new UPan;      $wire = new Wire;       $pc->USB($upan);      $pc->USB($wire);    }  }  $p1 = new Person;  //实例化一个Person类  $p1->usePC(); 

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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft