gpt4 book ai didi

language-agnostic - 你能解释一下关于封装的事情吗?

转载 作者:行者123 更新时间:2023-12-03 13:44:50 26 4
gpt4 key购买 nike

回复 What is your longest-held programming assumption that turned out to be incorrect?问题,错误的假设之一是:

That private member variables were private to the instance and not the class.



( Link)

我听不懂他在说什么,谁能用一个例子来解释什么是错/对?

最佳答案

public class Example {
private int a;

public int getOtherA(Example other) {
return other.a;
}
}

像这样。如您所见,私有(private)并不能保护实例成员不被另一个实例访问。

顺便说一句,只要你小心一点,这并不全是坏事。
如果 private 不能像上面的例子那样工作,那么编写 equals() 和其他这样的方法会很麻烦。

关于language-agnostic - 你能解释一下关于封装的事情吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1357496/

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