• 2022-07-22
    下列选项中,关于接口的定义正确的是?
    A: abstract class Demo1{ abstract void speak(); abstract void eat(); }
    B: interface Demo2{ void speak(); void eat(); }
    C: interface Demo3{ void speak(); void eat(){}; }
    D: interface Demo4{ void speak(){ System.out.println("ITCAST"); } void eat(); }