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.
尽管 System 是一个具体的类,但它不能被实例化。
test.java:4: System() 在 java.lang.System 中具有私有访问权限
我知道不允许创建对象。问题是为什么……?
它不能被实例化,因为它有一个私有构造函数。
因为没有理由实例化它。那不是它的用途。
它就是一堆静态方法和属性。