>php教程 >php手册 >领悟php接口中interface存在的意义

领悟php接口中interface存在的意义

WBOY
WBOY원래의
2016-06-06 20:29:131460검색

本篇文章是对php接口中interface存在的意义进行了详细的分析介绍,需要的朋友参考下

可能大家都懂这些,作为不懂的我猜测了一下这个interface的意义,他就是为了后面调用的时候再调用的方法中调用实现类中interface中存在的内容,好绕口啊,写个例子留作以后看吧
pay.php

复制代码 代码如下:


interface Ipay
{
function withmoney();

//function withinternet();
}
class Dmeng implements Ipay
{

function withmoney()
{
echo "花人民币买东西";
}
function withinternet()
{
return "用网银支付";
}
}


usei.php

复制代码 代码如下:


include_once 'pay.php';
class main
{
function run($vc)
{
$this->vc = $vc;
$this->vc->withinternet();
echo "yunxing";
}

}
$com= new main();
$com->run(new Dmeng);


就是上面那样,虚拟主机,香港服务器,服务器空间,我们将interface中的某个方法注释掉,发现再调用的时候,就没用了
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.