确实,php 接口是有它的目的的。
它们是契约,是给其他开发人员的说明手册。然而,还是很难理解接口有什么用。
接口是抽象的类,无法直接实例化,但是可被实现。
这是一个基本的例子
interface myinterface { public function tname(string $name); public function getname();}class myclass implements myinterface { private $name; public function tname(string $name) { $this->name = $name; } public function getname() { return $this->name; }}
myclass
必须实现tname()
和getname()
方法。如果你不照做,你就会遇到致命错误。
fatal error: class myclass contains 2 abstract methods and must therefore be declared abstract or implement the remaining methods (myinterface::tname, myinterface::getname)
此外,接口中定义的方法的访问性必须为公开的,并且接口中不能定义类成员。
开发者使用接口来描述一个或者一组类的共同行为。
但是为什么只负责封装实现而不负责处理每个类的详细信息呢?
为了解耦!
接口允许你在不更改详细信息天空之城 六线谱的情况下更改实现,也就是你使用此实现的方式。
任何缓存系统都需要以下功能
存储 / 设置缓存中的内容获取缓存中的内容删除缓存中的内容基于此,我们可以创建如下的缓存接口
interface cacheinterface { public function t(string $key, $val); public function ge有关战争的成语t(string $key); public function delete(string $key);}
以这种方式,就可以让开发者知道需要实现缓存接口,具体怎么实现,我们不需要知道。结果就是我们可以在不修改使用方式的情况下方便地切换缓存系统
as a result, it’s easy to change the caching system without changing the way it’s ud in the project.
我们来看刚才例子的具体应用。对于symfony而言,如果你想要实现任何缓存系统,最佳实践就是按照下面的方式来做
u symfony\contracts\cach安全载流量e\cacheinterface;class myclass { private $cache; public function __construct(cacheinterface $cache) { $this->cache = $cache; }}
通过依赖注入,将缓存接口注入到我们的类中。下次我们修改缓存系统时,myclass 类不需要做任何的改变。
php 不支持多继承,下面这种方式是不可能的
class myclass extends classx, classy {}
之所以不允许这样做部分原因是51放假安排2015由于diamond 问题.
不过,你可以这么做
class classy extends classx {}class myclass extends classy {}
但是classx
和classy
可能处理不同的事情,因此使用继承没有任何意义。
如果你想要执行多种行为,那么你可以多个接口
class myclass impleme强开头成语nts interfacex, interfacey {}
换句话说,你可以让一些类共享一部分功能而不是共享一个父类。
php 接口是类的方法模板,这对于解耦实现及使用是非常有帮助的。
当你需要保持灵活性并确保所有开发人员都遵循一组规则时,此功能特别有用。
更多学习内容请访问:
八重樱:腾讯t3-t4标准精品php架构师教程目录大全,只要你看完保证薪资上升一个台阶(持续更新)
本文发布于:2023-04-08 09:58:24,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/7b085fb764d27ddd5de5b17f8c9fc421.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP 的 interface 有什么用处?.doc
本文 PDF 下载地址:PHP 的 interface 有什么用处?.pdf
留言与评论(共有 0 条评论) |