2007-10-02から1日間の記事一覧

static import

static importを使うとimportしたクラス名の修飾を省略することができる。JDK5からの機能。 通常のimportの例 import java.lang.Math.*; System.out.println(Math.PI); System.out.println(Math.random()); static importの例 import static java.lang.Math.…