Inheritance, Interface and Package: K. K. Wagh Polytechnic, Nashik-3
Inheritance, Interface and Package: K. K. Wagh Polytechnic, Nashik-3
Inheritance, Interface and Package: K. K. Wagh Polytechnic, Nashik-3
Chapter 3
4) Use of package:
import package.classname;
static import method
import static java.lang.Math.sqrt;
import static java.lang.Character.isUpperCase;
import static java.lang.System.out;
class StaticImport
{
public static void main(String args[ ])
{
double x = sqrt(52); //method1
out.print("Square root of 52: ");
out.println(x); //method2
char ch = 'D';
if(isUpperCase(ch)) //method3
out.println(ch+" is uppercase");
}
}