gpt4 book ai didi

java - 哪种访问类字段的方式更好?

转载 作者:行者123 更新时间:2023-12-01 12:05:02 25 4
gpt4 key购买 nike

我刚刚写了一个小测试程序:

public class ClassField {
int a = 10;

public int getValue() {
return a;
}

public void setValue(int a) {
this.a = a;
}
}

public class Main {
public static void main(String[] args) {
ClassField test1 = new ClassField();
ClassField test2 = new ClassField();

System.out.println(test1.getValue());
test1.setValue(20);
System.out.println(test1.getValue());

System.out.println(test2.a);
test2.a = 20;
System.out.println(test2.a);
}
}

程序给出了预期的输出:

10
20
10
20

据我所知,有两种访问字段的方法:直接访问和通过方法间接访问。 通常认为哪种方式更好?

最佳答案

一般来说,方法是访问任何字段的更好方法,因为您只能获取变量的值,而不是变量本身。它还提供了一种限制对变量的访问的方法,无论是获取、设置还是两者。由于 C++ 能够使用引用,这种想法在 C++ 中更为普遍,但这种做法也适用于其他面向对象的语言。当涉及其他程序员时,方法还倾向于提供更直观的 API。

关于java - 哪种访问类字段的方式更好?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27673225/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com