英国、美国都有自己的核武机构,每个国家的核武机构,都使用不同的接口来进行通讯:
CODE: class Country
{
// ...
}
1,对于英国,核武密码被分成三个部分,需要用三个接口取得:
CODE: interface I1{function get1();};
interface I2{function get2();};
interface I3{function get3();};
class English extends Country implements I1,I2,I3
{
function get1(){return '123';}
function get2(){return '456';}
function get3(){return '789';}
}
2,对于美国,保管核武密码的方式不一样,使用了5个接口来分别取得密码的部分:
CODE: interface Ia{function getA();};
interface Ib{function getB();};
interface Ic{function getC();};
interface Id{function getD();};
interface Ie{function getE();};
class America extends Country implements Ia,Ib,Ic,Id,Ie
{
function getA(){return 'a';}
function getB(){return 'b';}
function getC(){return 'c';}
function getD(){return 'd';}
function getE(){return 'e';}
}
如果我们中国欲取得此二国的核武密码,则必须先熟知这二国的核武密码接口。实际行动(runtime)时,
用if..else来判断现在具体是哪个国家,然后调用该国相应的核武密码接口。
CODE: class Client
{
private function getRealPwd(Country $country)
{
if($country instanceof English)
{
return $country-get1() mod ( $country-get2() + $country-get3() );
}elseif($country instanceof American){
return $country-getA() . $country-getB() . $country-getC() . $country-getD() . $country-getE();
}elseif(...){
...
}
}
}