Java 的系统类有哪些?
在阅读一些有关断言的文档时,我发现:
java -ea -dsa
“一般情况下启用断言,但是 禁用系统中的断言 类。”
哪些是系统类?
When reading some documentation about assertions, I found:
java -ea -dsa
"Enables assertions in general, but
disables assertions in system
classes."
Which are the system classes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 断言文档 ,系统类是“没有显式类加载器”的类,即由引导类加载器加载的类。 AFAIK 这意味着 rt.jar 的内容,整个标准 API。
According to the assertions documentation, system classes are classes "which do not have an explicit class loader", i.e. the classes loaded by the bootstrap classloader. AFAIK that means the contents of
rt.jar
, the entire standard API.根据相同的文档系统,类是没有类加载器的类。可能是在引导类路径上找到的类
Per the same documentation system classes are classes which do not have a class loader. Could be the classes found on the boot class path