What are Java system classes?

While reading some documentation on claims, I found:

java -ea -dsa 

"Enables statements in general, but disables statements in the system classes."

What are the system classes?

+4
source share
2 answers

According to the claims documentation , system classes are classes that do not have an explicit class loader, that is, classes loaded by loading the class loader. AFAIK, which means the contents of rt.jar , the entire standard API.

+7
source

According to the same system documentation classes, classes that do not have a class loader. There may be classes found on the boot path.

0
source

Source: https://habr.com/ru/post/1307382/


All Articles