写出程序运行的结果是Interface Inter {
public void show(); }
Abstract class AbstractInter implements Inter {
public void show() {
System.out.println("AbstractInter show()"); }}
Class InterImp extends AbstractInter {
public void show() {
System.out.println("InterImp show()"); } }
Public class InterImpTest {
public static void main(String[] args) {
InterImp i = new InterImp();
i. show(); } }