2017-03-06 42 views

回答

0
public interface inf1 { void show(); } 

public interface inf2 { void show(); } 

public class A:inf1,inf2 { 
    public void inf1.show(){} 
    public void inf2.show(){} 
} 

這是顯式實現接口。

相關問題