Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个同时具有 Java 和本机 (C/C++) 代码的应用程序。我需要pthread_t在 Java 端存储一个,Java 和 JNI 类型是什么?
pthread_t
转换void*并存储在 Javalong中。
void*
long
pthread_t通常是指向系统相关的指针struct;它将int在 32 位系统上为 32 位 (Java),在 64 位系统上为 64 位 (Java long)。
struct
int