下面的代码中正确的是 A: class Example { abstract void g(); } B: interface Example { void g() { System.out.print("hello"); } } C: abstract class Example { abstract voidg() { System.out.print("hello"); } } D: abstract class Example { void g() { System.out.print("hello"); } }
下面的代码中正确的是 A: class Example { abstract void g(); } B: interface Example { void g() { System.out.print("hello"); } } C: abstract class Example { abstract voidg() { System.out.print("hello"); } } D: abstract class Example { void g() { System.out.print("hello"); } }
1