09/01/27 21:07:39
>>161
public enum TestEnum {
A(TestConst.A), B(TestConst.B), ... ;
private static class TestConst {
static { System.loadLibrary("libNativeHoge");}
static final int A = NativeHoge.getA();
static final int B = NativeHoge.getB(); ...
むずいな。