河南成教 / 河南理工大学
10[分析题]
下面程序是否有错?如果有错试标出错误位置并指出是何种错误。
interface MyInterface
{
void method1();
}
abstract class Parent implements MyInterface
{
}
class Child extends Parent
{
void method1()
{
System.out.println(“I am implemented now!”);
}
}
10[分析题]
下面程序是否有错?如果有错试标出错误位置并指出是何种错误。
interface MyInterface
{
void method1();
}
abstract class Parent implements MyInterface
{
}
class Child extends Parent
{
void method1()
{
System.out.println(“I am implemented now!”);
}
}
参考答案:
佳题速递: