2007-09-22から1日間の記事一覧

なんでー

仕様書の中に JVM の制限についてまとめた節があって、それによると The amount of code per non-native, non-abstract method is limited to 65536 bytes by the sizes of the indices in the exception_table of the Code attribute (§4.7.3), in the Line…

長すぎるということ

id:succeed:20070922 より。こういう風に静的に配列を書くと、 class Main { static final int[] array = { 1, 2, 3 }; }実際にはこういう感じに変換される。 class Main { static final int[] array; static { array = new int[3]; array[0] = 1; array[1] …