作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用 getter 和 setter 来更改下面变量 x 的值。
package game;
public class Game {
private int x;
private int y;
public int getX() {
return this.x;
}
public int getY() {
return this.y;
}
public void setX(int x) {
this.x = x;
}
public void setY(int y) {
this.y = y;
}
public static void main(String[] args) {
Game game = new Game();
Command command = new Command();
command.changeX();
System.out.println(game.getX());
}
}
我有另一个类,它有一个通过使用 get 和 set 方法来更改整数 x 的方法。
package game;
public class Command {
Game game = new Game();
public void changeX() {
int x = game.getX();
game.setX(x + 1);
}
}
当我运行程序时,控制台打印出 0,但它应该是 1。然后,如果我在将变量设置为 1 后立即尝试使用 Command 中的 getX 方法打印出 x 的值,则会打印出 1。我想看看是否有一种方法可以在不使用静态变量的情况下执行此操作.
最佳答案
您正在创建两个完全独立/唯一的 Game 对象,在一个对象中更改 x 并期望在另一个对象中更改,正如您发现的那样,这是行不通的。
而是通过 setter 方法或构造函数将 Game 对象传递到 Command 对象,然后然后更改它。
public static void main(String[] args) {
Game game = new Game();
Command command = new Command(game); // *** note constructor change
command.changeX();
System.out.println(game.getX());
}
<小时/>
public class Command {
private Game game; // note it's not initialized here
// pass Game in via a constructor parameter
public Command(Game game) {
this.game = game; // and set the field with it
}
public void changeX() {
// now you'll be changing the state of the same Game object
int x = game.getX();
game.setX(x + 1);
}
关于java - 如何在不使用 static 的情况下更改另一个类的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23585192/
我是一名优秀的程序员,十分优秀!