J N I 썸네일형 리스트형 JNI, jint type example JNI, jint type example 자바의 int 형과 같은 기본형 데이터 타입을 JNI에서 다루는 예 JNITest.java public class JNITest { static{ System.loadLibrary("my_dll"); } public native int add(int a, int b); public static void main(String[] args) { JNITest test = new JNITest(); int result = test.add(3, 5); System.out.println("C 함수 리턴값: "+result); } } JNITest.h /* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Hea.. 더보기 이전 1 2 3 4 5 6 7 8 다음