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.
在 Java 中,为什么不允许受保护的顶级类?我听到过类似“这没有意义”的回答,但为什么呢?
因为你永远无法访问它,所以它毫无意义。
protected 是关于让包含类型的子类访问成员,如果没有包含类型,这意味着什么?<--因此毫无意义。