JAVA 一个接口多个同名不同参数的方法 在写在工厂类时怎么写?菜鸟刚学习JAVA,求高手指教???

2024-11-08 23:57:11
推荐回答(3个)
回答1:

public interface testComm {
public void test(String arg);
public void test(String arg, String arg2);
public void test(String arg, String arg2, String arg3);
public int test(int arg);
public void test(int arg, String arg2);
public void test(int arg, String arg2, String arg3);
}

回答2:

就是简单的重载就行,只是不要写实现而已

回答3:

写着就行,有错,ide会报错