作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
老实说,我在 Java 上苦苦挣扎,我正试图从另一个类访问一个数组。我相信我已经用这段代码创建了数组
public class aff_array {
String name;
public static void main (String[] args) {
int z = 3; //total no of affirmations
int x = 1;
aff_array[] afz = new aff_array[z]; //dim
while ( x < z ) {
afz[x] = new aff_array(); // create objects for array
x = x + 1;
}
afz[1].name = "i am the best";
afz[2].name = "you are the rest";
}
但我真的很难弄清楚如何从另一个类(class)访问 afz[1].name 等。这可能是基本的,但我真的很挣扎..
最佳答案
只要它被创建为自动变量(换句话说,局部变量),就不能从另一个类访问它。在上面的代码中,您的“afz”构造将仅在 main 方法内可见(并且只能在实例化后使用)。要使其对其他类可见,您可以将其定义为实例变量。即:
公共(public)类 aff_array {
String name;
aff_array[] afz;
public static void main (String[] args) {
int z = 3; //total no of affirmations
int x = 1;
afz = new aff_array[z]; //dim
首先,你应该将它定义为private,并创建一个getter方法(这是一种常见的做法,尊重封装),然后调用这个方法在另一个类上获取它。
关于java - 如何从另一个类引用数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21215262/
我是一名优秀的程序员,十分优秀!