可能大家都懂这些作为不懂的我猜测了一下这个interface的意义他就是为了后面调用的时候再调用的方法中调用实现类中interface中存在的内容好绕口啊写个例子留作以后看吧
payphp
复制代码 代码如下:
interface Ipay
{
function withmoney();
//function withinternet();
}
class Dmeng implements Ipay
{
function withmoney()
{
echo "花人民币买东西";
}
function withinternet()
{
return "用网银支付";
}
}
useiphp
复制代码 代码如下:
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中的某个方法注释掉发现再调用的时候就没用了