跟着百度学PHP[4]OOP面对对象编程-12-对象接口技术(interface)
Posted 可我浪费着我寒冷的年华
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跟着百度学PHP[4]OOP面对对象编程-12-对象接口技术(interface)相关的知识,希望对你有一定的参考价值。
php与大多数面向对象编程语言一样,不支持多重继承。也就是说每个类只能继承一个父类。
接口正是解决每个类只能继承一个父类这个问题的
接口用什么权限,继承的那个方法也要使用什么权限。
接口的声明使用:interface
接口的继承使用:implements
目录++++++++++++++++++++++++++++++++++++++++++++
00x1 接口的声明以及接口的引用(案例一)
00x2 如何继承多个接口(案例二)
00x3 判断某个对象是否实现了某个接口(案例三)
++++++++++++++++++++++++++++++++++++++++++++++
00x1 案例一
<?php interface icaneat{ #使用interface声明一个接口 public function eat($food); //接口里面不需要有方法的实现 } class Human implements icaneat{ #使用implements继承接口(不能使用extends),稍后要与接口对接的属性或者方法要与其一致。 public function eat($food){ #如该行所示,要与接口的属性或者方法一致。 echo "i eating ".$food."\n"; //实现了某一个接口之后,必须提供接口中定义的方法的具体实现。 }23 } $test=new Human(); $test->eat(‘apple‘); ?>
输出效果如下:
i eating apple
00x2 案例二
在implments使用后用逗号隔开即可实现对多个接口的继承。
格式:
implements 接口1,接口2,....
<?php interface icaneat{ public function eat($food); } interface hello{ public fuction hello($nihao); } class Human implements icaneat,hello{ #使用逗号隔开即可实现对多个接口的继承 public function eat($food){ echo "i eating ".$food."\n"; } } $test=new Human(); $test->eat(‘apple‘); ?>
00x3 案例三
使用instanceof关键词检验
范例:var_dump($object instanceof hello); #对象$object是否实现了hello接口
<?php interface test { public function one($a); } interface test2 { public function two($b); } class chengdaniu implements test,test2 { public function one($a){ echo "我爱WEB安全技术!"; } public function two($b){ echo "我要成大牛!"; } } $shi=new chengdaniu(); var_dump($shi instanceof test); ?>boolean true
输出效果如下所示:
THE END
以上是关于跟着百度学PHP[4]OOP面对对象编程-12-对象接口技术(interface)的主要内容,如果未能解决你的问题,请参考以下文章
跟着百度学PHP[4]OOP面对对象编程-7-封装性private
跟着百度学PHP[4]OOP面对对象编程-7-OOP的一些关键子讲解
跟着百度学PHP[4]OOP面对对象编程-5-内部引用$this
跟着百度学PHP[4]OOP面对对象编程-16-switch逻辑就语句