Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么 Object 类中的方法,如 equals()、hashcode() 等是公共的。如果这些会受到保护,那将足以满足要求。请解释。
错误的。
protected除了至少属于您的类型的限定符之外,您不能从基类调用方法。
protected
受到toString()保护,代码class A {}只能toString()调用A.
toString()
class A {}
A