JNI에서 사용되는 type signature.
Java Type | JNI Type | machine dependent C/C++ typedef | Signature | Call...Method Get...Field |
---|---|---|---|---|
boolean | jboolean | unsigned char | Z | Boolean |
byte | jbyte | signed char | B | Byte |
char | jchar | unsigned short | C | Char |
short | jshort | short | S | Short |
int | jint | int | I | Int |
long | jlong | long | J | Long |
float | jfloat | float | F | Float |
double | jdouble | double | D | Double |
void | void | V | Void | |
nonprimitive | jobject | * ... | L...; | Object |