标签: java methods interface
是否可以使用通用接口作为方法的参数?
public interface A { public void Trans(interface) }
答案 0 :(得分:1)
是的,这是可能的。 你这样做会产生语法错误。
public interface B { .... } public interface A { public void trans(B theInterface); }