博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【学习Android NDK开发】Type Signatures(类型签名)
阅读量:5967 次
发布时间:2019-06-19

本文共 570 字,大约阅读时间需要 1 分钟。

类型签名(Type Signatures)

    (<Parameter 1 Type Code>[<Parameter 1 Class>];...)<Return Type Code>

The JNI uses the Java VM’s representation of type signatures. Following Table shows these type signatures.

Type Signature Java Type
Z booleab
B byte
C char
S short
I int
J long
F float
D double
L full-qualified-class full-qualified-class
[type type[]
(arg-types)ret-type method type

For example, the Java method:
    long f (int n, String s, int[] arr);
has the following type signature:
    (ILjava/lang/String;[I)J

转载于:https://www.cnblogs.com/dyingbleed/archive/2012/10/11/2720180.html

你可能感兴趣的文章
file_get_contents("php://input")的使用方法
查看>>
MeasureSpec学习
查看>>
Android View体系(五)从源码解析View的事件分发机制
查看>>
数据结构 之 并查集(Disjoint Set)
查看>>
枚举类的创建和使用
查看>>
如何改变Myeclipse编辑区背景色(转)
查看>>
深入浅出LVM on linux
查看>>
Eclipse+Maven创建webapp项目
查看>>
drill 数据库查询方式简单说明
查看>>
nodeJS之二进制buffer对象
查看>>
sql server 2008安装图解
查看>>
并查集图冲突hdu1272
查看>>
Effective JavaScript Item 40 避免继承标准类型
查看>>
Yocto tips (10): Yocto hellworld 加入一个软件包
查看>>
response.getWriter().write()与out.print()的区别
查看>>
spring boot(一):Hello World
查看>>
POJ 2533 Longest Ordered Subsequence
查看>>
hdu 1712 ACboy needs your help
查看>>
Xcode6+Cocos2d-x真机调试 报错
查看>>
openssl修改版本号
查看>>