我在网上看了这个,我需要帮助。
我正在尝试使用引用从另一个类访问字段我猜...
例如:
public class Ball {
String name;
int size;
public Ball(String n, int s) {
this.name = n;
this.size = s;
}
现在我想在另一个类中使用size:
public class Game {
int length;
int size; // same as from class Ball
这有效吗?我基本上只想要一个可以通过不同类访问的“大小”字段。我知道这可能是一个非常基本的问题,但我是java的新手
由于
答案 0 :(得分:1)
看起来你可能想要类似下面的内容
public class Ball {
private int length;
private int size;
// getters/setters
}
public class Game {
private int length;
private Ball ball;
public Game() {
}
public Game(int length, Ball ball) {
this.length = length;
this.ball = ball;
}
}