PHP使用接口的好处之一_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > PHP使用接口的好处之一

PHP使用接口的好处之一

 2010/9/19 23:34:12  richyang  http://richyang.javaeye.com  我要评论(0)
  • 摘要:interfaceIsay{publicfunctionsay();}classhelloimplementsIsay{publicfunctionsay(){echo"hello";}}classworldimplementsIsay{publicfunctionsay(){echo"world";}}functiontest_say(Isay$isay){$isay->say();}test_say(newhello());//output:"hello"test_say
  • 标签:PHP使用接口 好处
interface Isay {
    public function say();
}

class hello implements Isay{
    public function say(){
        echo "hello";
    }
}

class world implements Isay{
    public function say(){
        echo "world";
    }
}

function test_say(Isay $isay){
    $isay->say();
}

test_say(new hello());    //output:"hello"
test_say(new world());    //output:"world"
发表评论
用户名: 匿名