【学习Android NDK开发】Primitive Types Map(基本类型映射)

Java type         JNI type        C type        Stdint C type        
boolean jboolean unsigned char uint8_t
byte jbyte signed char int8_t
char jchar unsigned short uint16_t
double jdouble double double
float jfloat float float
int jint int int32_t
long jlong long long int64_t
short jshort short int16_t

转载于:https://www.cnblogs.com/dyingbleed/archive/2012/10/07/2714237.html

猜你喜欢

转载自blog.csdn.net/weixin_34043301/article/details/93301814