自从我使用 JAVA 以来已经有一段时间了。
我正在尝试创建一个实例变量以便在另一个类中使用方法。
但它给了我一条错误消息,上面写着“构造函数 BB 未定义”
有什么帮助吗?
public class AA implements CC { //this is the class where I am trying to create an instance variable
public int Get() {
throw new IllegalStateException("Please implement me.");
BB fifo = new BB(); // this is where I am declaring.
}
}
还有 FIFOLock 类的签名。
public class BB implements DD {
public int Get() {}
}