Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 272 Bytes

statics.md

File metadata and controls

18 lines (13 loc) · 272 Bytes

Java is weird.

Statics

Not a null pointer

Math[] maths = new Math[10];
maths[0];                    // null
maths[0].floor(1.5);         // 1

Import

import static java.lang.Math.*; // (Valid)
min(1, 3);                      // 1