
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Import Java.lang Package in Java Programs
No, java.lang package is a default package in Java therefore, there is no need to import it explicitly.
i.e. without importing you can access the classes of this package.
If you observe the following example here we haven't imported the lang package explicitly but, still we are able to calculate the square root of a number using the sqrt() method of the java.lang.Math class.
Example
public class LangTest { public static void main(String args[]){ int num = 100; double result = Math.sqrt(num); System.out.println("Square root of the number: "+result); } }
Output
Square root of the number: 10.0
Advertisements