我是一个新手java程序员,我正在尝试制作我的第一个项目。
我需要在 2 个类之间传递一个变量,这很好。问题是变量有一个变化的值,我不能传递实际值。这是一个例子:
public class A{
private int counter = 0;
public int getCounter(){
return counter;
}
//here some code which will increase or decrease the value of the counter variable
//lets say for the sake of the example that at this point the value of the variable is 1.
//counter = 1;
}
public class B{
public static void main(String[] args) {
A a = new A();
System.out.println(a.getCounter());// here I need the actual counter variable value which is currently: 1
}
}
我的问题是我总是收到 0。如何传递变量的实际值。
非常感谢任何帮助或建议。