2009-01-08から1日間の記事一覧

Staticなメンバ、メソッドへのアクセス時にコンストラクタは呼び出されない。

時々曖昧になる、オブジェクト指向の挙動をメモ。 /** * サンプルクラス */ public class Sample01 { final static String CONST = "const"; public Sample01() { System.out.println( "hoge" ); } static public void printText() { System.out.println( "m…