php實現多個接口的時候,若是這些接口裏面有重名的函數會怎樣

案例一 interface a { function test(); } interface b { function test(); } class C implements a,b { function test() { echo 'c'; } } //不能說是實現哪一個接口的,由於是兩個同時實現,爲C中的test()既是a中的test()也是b中的f()。 案例二 inte
相關文章
相關標籤/搜索