gpt4 book ai didi

c - JNI : calling C from java

转载 作者:行者123 更新时间:2023-11-30 14:55:55 25 4
gpt4 key购买 nike

我正在为 Java 代码编写一个 C 实现,它是一个简单的 HelloWorld 代码。

#include <jni.h>
#include <stdio.h>
#include "HelloJNI.h"

// Implementation of native method sayHello() of HelloJNI class
JNIEXPORT void JNICALL Java_HelloJNI_sayHello(JNIEnv *env, jobject thisObj) {
printf("Hello World!\n");
return;
}

但是我想在这个函数中调用另一个函数,称为callmethod:

int callmethod(JNIENV *env, jint a, jint b)
{
return a+b;
}

有没有办法调用int callmethod(JNIENV *env, jint a, jint b),它没有在方法中声明要调用的java代码JNIEXPORT void JNICALL Java_HelloJNI_sayHello(JNIEnv *env, jobject thisObj)?

最佳答案

用 C 编写的 native 方法可以执行任何其他 C 程序可以执行的操作,包括调用其他函数:

JNIEXPORT void JNICALL Java_HelloJNI_sayHello(JNIEnv *env, jobject thisObj) {
jint a=3, b=4;
printf("sum=%d\n", callmethod(env, a, b));
return;
}

关于c - JNI : calling C from java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45179368/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com