2005-12-31から1日間の記事一覧

IntBufferを使った例 static void integer(java.nio.IntBuffer i){ i.put(0, 5); } public static void main(String[] args){ java.nio.IntBuffer a = java.nio.IntBuffer.allocate(1).put(0, 3); System.out.println(a.get(0)); integer(a); System.out.pri…

Javaの参照型変数をメソッドに渡すときの渡し方は値渡しだった.てっきり参照渡しだと思ってたらハメられた.くそう. 以下のようなコードを書いた. static void integer(Integer i){ i = new Integer(5); } public static void main(String[] args){ Integ…