PHP接口入门分析实例
1.快速入门案例:
案例1:
<?php//定义规范/方法 interface Iusb { public function start(); public function stop(); } //编写手机类,让它去实现接口 //当一个类实现了某个接口,则要求该类必须实现这个接口的所有方法 class Camera implements Iusb { public function start() { echo "相机开始工作"; } public function stop() { echo "相机停止工作"; } } class Phone implements Iusb { public function start() { echo "手机开始工作"; } public function stop() { echo "手机停止工作"; } } //如何使用 $camera1=
new Camera(); $camera1->start(); $phone1=new Phone(); $phone1->start();?>
效果:
相机开始工作手机开始工作
来自
2.接口使用的基本语法:
interface接口名
{
//属性
//方法
}
->接口中的方法没有方法体
->如何实现接口
Class 类名implements 接口名
{
}
**可以实现多个接口
Class 类名implements 接口名1,接口名2……
{
}
->接口的作用:声明一些方法,供其它类来实现,接口还体现编程中我们希望的效果:高内聚低耦合 的特点 ,见图1
深入讨论-接口interface
什么时候用接口?
1.定规范
2.定下规范,让别的程序人来实现
3.当多个类,它们之间平级的关系,这些类都要去实习某个功能,只是实现方式不一样
细节-interface
1.接口不能实例化;
2.接口中所有方法都不能有方法体;
3.一个类可以实现多个接口,但以","隔开;
4.接口中可以有属性(区别于方法),但必须为常量,并且是public
案例2:
<?php interface IsUSB { const A=555;//常量前面不需要$ } class Test implements IsUSB{ public function aa() { echo "<br>继承的常量为:".IsUSB::A;//常量引用方法:接口名::常量名称 }}$test1=new Test();$test1->aa(); echo "<br>没有继承的常量为:".IsUSB::A;//常量引用方法:接口名::常量名称?>
5.接口的方法都是public的,即没有protected,以及private,如果不写,默认为public;
6.接口不能继承其它类,但可以继承其它接口;并且一个接口可以继承多个接口,而一个类不能继承多个类;一个类可以同时继承某个类同时实现接口;
例如:inerface 接口名 extends 接口名1,接口名2…… 如图2
案例3:
<?php interface IsUSB01 { public function a(); } interface IsUSB02 { public function b(); } interface IsUSB03 extends IsUSB01,IsUSB02{ }Class Class1{ public function TST() { echo "继承类名为Class1<br>"; }} class Test extends Class1 implements IsUSB03 { public function __construct() { echo "接口IsUSB03继承了接口IsUSB01以及接口IsUSB02<br>";
} public function a() { echo "实现接口IsUSB01的a()<br>"; } public function b() { echo "实现接口IsUSB02的b()<br>"; } }$test1=new Test();$test1->a();$test1->b();$test1->TST(); ?>
结果:
接口IsUSB03继承了接口IsUSB01以及接口IsUSB02
实现接口IsUSB01的a()
实现接口IsUSB02的b()
继承类名为Class1
来自
其中,接口IsUSB03继承了IsUSB01以及IsUSB02,因为是接口继承接口,不需要实现方法,而,Test类引用了IsUSB03接口,则需要实现方法。
3.继承与接口区别
实现接口可以看作,对单一继承类的一种补充,同时,继承是层次式的,不太灵活,多层次继承如果修改某个类,就会打破继承的平衡,而接口没有那么麻烦,较为灵活

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

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' =>

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.

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

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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 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
