0

I'm new to Java and I've noticed that I don't have to load Math API to use it - therefore I'm wondering what are other packages that we don't have to import but we can use?

Stipe
  • 25
  • 1
  • 6

1 Answers1

1

Everything in the java.lang package is implicitly imported and you do not need to do so yourself. more details in this POST

Community
  • 1
  • 1
Youssef NAIT
  • 1,362
  • 11
  • 27