c++ 是什么?函数签名附加关键字?
我找到了一个用 C++ 编写的 JNI 本机函数的示例下面是哪个签名
JNIEXPORT jbyteArray JNICALL Java_ReadFile_loadFile(JNIEnv *, jobject, jstring);
这些 JNIEXPORT
和 JNICALL
关键字是什么?你怎么称呼他们?他们做什么?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JNIEXPORT
和JNICALL
是用于指定 JNI 函数和本机方法实现的调用和链接约定的宏。程序员必须将 JNIEXPORT 宏放在函数返回类型之前,将 JNICALL 宏放在函数名称和返回类型之间。有关详细信息,请访问:http://java.sun.com/docs/ books/jni/html/types.html
JNIEXPORT
andJNICALL
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
http://java.sun.com/docs/books/jni/html /types.html
来自“12.4 常量”
http://java.sun.com/docs/books/jni/html/types.html
From "12.4 Constants"