我很好奇公共变量实际上做了什么。我假设它们适用于包内的所有类,但显然情况并非如此。我想知道如何将 ADD 和 MULT 变量从第一类转移到第二类。这是我在第一堂课上的代码:
public class first {
public static int ADD = 0;
public static int MULT = 1;
public static int derp(int x, int x2, int a){
int septor = 0;
if(a == 0){
septor = x + x2;
}
if(a == 1 ){
septor = x * x2;
}
return septor;
}
}
第二类:
public class second {
public static void main(String args[]){
int y = first.derp(6,10,ADD);
System.out.println(y);
}
}