请问".h"是什么文件格式?
请问各位高手:
".h"是什么文件格式?
- public class testdll
- {
- static
- {
- System.loadLibrary("goodluck");
- }
- public native static int get();
- public native static void set(int i);
- public static void main(String[] args)
- {
- testdll test = new testdll();
- test.set(10);
- System.out.println(test.get());
- }
- }
用javac testdll.java编译它,会生成testdll.class。
再用javah testdll(这里是什么意思?),则会在当前目录下生成testdll.h文件。