我有一个班级员工
import javax.swing.*;
public abstract class Employee {
public static void searchEmp(int id) {
JOptionPane.showMessageDialog(null, "done");
}
}
现在我有另一个班级测试:
public class `test` {
public static void main(String args[]) {
searchEmp(2);// here my programme give error
}
}
我想searchEmp()
从类测试中调用 which 是 Employee 的一部分,但它给出了一个错误。请提出任何没有继承的解决方案。