我需要从一个类返回几个布尔值,这里是创建值的类:
public class Units {
public static boolean unit1A;
public static void mainPanel(final JFrame mainMenuFrame){
unit1A = true;
}
}
我希望将值返回到
的类public class UnitsTesting{
public static void main(String[] args) {
System.out.println(Units.unit1A);
}
}
不幸的是,由于我糟糕的项目设计,我保留了最终的JFrame,以便在需要时切换我的框架,因此需要保留,否则我会知道如何做到这一点。
编辑:对于任何有兴趣看这个的人,我只会按照Ashis Kumar Sahoo的建议返回一系列布尔值。