Saturday, April 09, 2011

Static Import – new in Java 1.5.0

The static import construct allows unqualified access to static members without inheriting from the type containing the static members. Instead, the program imports the members, either individually:

import static java.lang.Math.PI;
or en masse:

import static java.lang.Math.*;
Once the static members have been imported, they may be used without qualification:

double r = cos(PI * theta)

No comments: