JNI测试-java调用c算法并返回java调用处-1到20阶乘的和

一,java端:

  定义native方法, 'public native long factorial(int n);', 该方法用c/c++实现,计算'1到20阶乘的和',参数中'int n'是前n项的阶乘的和(这里是20).返回计算结果,并返回java调用处.

代码为:

 public class FactorialJava {

     public native long factorial(int n);

     //evaluate the elapse time.and the execution result.
public long elapse() {
long start = System.currentTimeMillis(); // code executing time.
long sumResult = factorial(20); System.out.println("sum_result:" + sumResult); long end = System.currentTimeMillis();
return end - start;
} //load the dll library before executing conductive code.
static {
System.loadLibrary("FactorialDll");
} public static void main(String[] args) {
FactorialJava fac = new FactorialJava();
System.out.println("耗时: " + fac.elapse() + " 毫秒");
} }

二,c/c++在vs中新建一个能产生dll动态链接库的项目,并实现java中定义的native方法.代码如下:

 jlong
recesive_fac(jint n) {
if(n == 1)
return 1;
else
{
return n * recesive_fac(n - 1);
}
} //使用jni循环递归过程,将结果返回java调用处.
JNIEXPORT jlong JNICALL Java_FactorialJava_factorial
(JNIEnv *env, jobject obj, jint n) {
jlong sum = 0;
//const jint n = 20;
for(int i = 1; i <= n; i++) {
sum += recesive_fac(i);
} return sum;
}

其中,调用过程需要引入的额外头文件,配置eclipse中的classpath的步骤在博客中的 java JNI 的实现(1)-又进一步加深对JVM实现的理解 中.

上一篇:让 Windows7 - 64bit 支持 VC++ 6.0 的解决方法(无法启动此程序,因为计算机中丢失 MSVCRTD.dll。尝试重新安装该程序以解决此问题)


下一篇:Memcached 使用备注