Static Variables and Methods

You access them by writing classname.variable or classname.method()

Example:
double d = Math.random();    You are using the static method random() from the Math class.
double radians = degrees * Math.PI / 180.0;    PI is a static variable in the Math class.
 
Note that you never have to create a Math object in order to access these fields. (e.g. never Math mmm = new Math(); mmm.random();)