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,并在书中读到一个问题:“永远不需要导入哪个java类。” 谁能帮我?
java.lang.*总是自动导入。
java.lang.*
这包含诸如System, Object, String,Math等类。
System
Object
String
Math
这是文档。
Object每个其他类派生自的类。其他示例是String,System和自动装箱类(Integer等Boolean)。
Integer
Boolean
你指的是包裹吗?该java.lang包会自动导入到任何 Java 程序中。请阅读此内容以获取更多信息。
java.lang