2016. 12. 7. 14:27 devel/android
JNI types and Data structures - signatures
https://docs.oracle.com/javase/8/docs/technotes/guides/jni/spec/types.html#type_signatures
Type Signatures
The JNI uses the Java VM’s representation of type signatures. The following table shows these type signatures.
Type Signature | Java Type |
---|---|
Z | boolean |
B | byte |
C | char |
S | short |
I | int |
J | long |
F | float |
D | double |
L fully-qualified-class ; | fully-qualified-class |
[ type | type[] |
( arg-types ) ret-type | method type |
frameworks/base/core/jni/* 참조
'devel > android' 카테고리의 다른 글
Android Sensor HAL Porting Guide? (0) | 2017.03.18 |
---|---|
안드로이드 센서 프레임워크 분석#2 - Android Sensor Service Porting (0) | 2017.03.18 |
안드로이드 센서 프레임워크 분석#1 - Android Sensor Service Porting (0) | 2016.12.24 |
java nested class jni 의 c로 전달하는 방법 및 java 메서드 호출 (0) | 2015.12.24 |
android studio 1.5 에서 jni debug 할 때 ldLibs 설정하는 방법 (0) | 2015.12.07 |