RSS Feed for 4036Category: 4036

Java Packages Interview Questions »

Do I need to import java.lang package any time? Why?No. It is by default loaded internally by the JVM. The java.lang package is always imported by default.
Can I import same package/class twice? Will the JVM load the package twice at runtime?
One can import the same package or same class multiple times. Neither compiler nor JVM [...]