Course Content
Core Java
About Lesson

The java.lang package is one of the most fundamental packages in Java, providing classes that are essential for the basic functioning of the Java language. These classes are automatically imported into every Java program, so you don’t need to import them explicitly.

Key Classes in java.lang package

  1. Object
  2. Class
  3. String
  4. StringBuffer
  5. StringBuilder
  6. System
  7. Math
  8. Thread
  9. Throwable
  10. Exception
  11. Error
  12. Runtime

Scroll to Top