以下接口的定义,正确的是() A: interface A{ void hello(){<br> ; }<br> } B: interface Aextends A1,A2{//A1,A2为已定义的接口 void hello(); } C: abstract interface A implements A1,A2{//A1,A2为已定义的接口 void hello(); } D: interface A{ void hello(){ }<br> }
以下接口的定义,正确的是() A: interface A{ void hello(){<br> ; }<br> } B: interface Aextends A1,A2{//A1,A2为已定义的接口 void hello(); } C: abstract interface A implements A1,A2{//A1,A2为已定义的接口 void hello(); } D: interface A{ void hello(){ }<br> }
1