日期:2014-05-17 浏览次数:20459 次
<?php//程序报一个这样的错,不理解,
interface PCI
{
function start();
function stop();
}
class NetCard implements PCI
{
function start()
{
echo "网络连接成功<br>";
}
function stop()
{
echo"网络断开连接<br>";
}
}
class SoundCard implements PCI
{
function start()
{
echo "有声音<br>";
}
function stop()
{
echo"没有可用的声卡设备<br>";
}
}
class ViewCard implements PCI
{
function start()
{
echo "显示图像<br>";
}
function stop()
{
echo"没有可用的显卡设备<br>";
}
}
class MainBoard
{
function usePCI($pci)
{
$pci->start();
$pci->stop();
}
}
class Person
{
function install()
{
$mb=new MainBoard();
}
}
$p=new Person();
$p->install();
$nc=new NetCard;
$mb->usePCI($nc);