c++ 是什么?函数签名附加关键字?

发布于 2024-12-24 02:12:19 字数 339 浏览 1 评论 0原文

我找到了一个用 C++ 编写的 JNI 本机函数的示例下面是哪个签名

JNIEXPORT jbyteArray JNICALL Java_ReadFile_loadFile(JNIEnv *, jobject, jstring);

这些 JNIEXPORTJNICALL 关键字是什么?你怎么称呼他们?他们做什么?

I found an example of JNI native function written in c++ which signature is following

JNIEXPORT jbyteArray JNICALL Java_ReadFile_loadFile(JNIEnv *, jobject, jstring);

What are these JNIEXPORT and JNICALL keywords? How do you call them? What do they do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空‖城人不在 2024-12-31 02:12:19

JNIEXPORTJNICALL 是用于指定 JNI 函数和本机方法实现的调用和链接约定的宏。程序员必须将 JNIEXPORT 宏放在函数返回类型之前,将 JNICALL 宏放在函数名称和返回类型之间。

有关详细信息,请访问:http://java.sun.com/docs/ books/jni/html/types.html

JNIEXPORT and JNICALL are macros used to specify the calling and linkage convention of both JNI functions and native method implementations. The programmer must place the JNIEXPORT macro before the function return type and the JNICALL macro between the function name and the return type.

For more information visit: http://java.sun.com/docs/books/jni/html/types.html

百思不得你姐 2024-12-31 02:12:19

http://java.sun.com/docs/books/jni/html /types.html

来自“12.4 常量”

JNIEXPORT 和 JNICALL 是用于指定 JNI 函数和本机方法实现的调用和链接约定的宏。程序员必须将 JNIEXPORT 宏放在函数返回类型之前,将 JNICALL 宏放在函数名称和返回类型之间。

http://java.sun.com/docs/books/jni/html/types.html

From "12.4 Constants"

JNIEXPORT and JNICALL are macros used to specify the calling and linkage convention of both JNI functions and native method implementations. The programmer must place the JNIEXPORT macro before the function return type and the JNICALL macro between the function name and the return type.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文