abstract interface 和 interface的區別
Class 和 Class 之間是 extendsInterface 和 Interface 之間是 extends
Class 和 Interface 之間是 implements
Interface 和 abstract Interface 之間僅僅只能被你自己定義的接口extends,不可能implements, implements是Class和Interface之間的 "專利 "
一句話 就是 abstract interface 只能被interface繼承,不能直接被類實現