Used in the declaration section of code, which is before any statements.
Example
double aDouble; // A stand alone declaration of a double. double a, b; // Declaring two doubles at the same time. double c = 12.1234567899; // Declaring and initializing a double at the same time.
Remarks
Unlike other languages, the double data type is actually a class.