Android AIDL 支持“短”类型?
AIDL支持短类型吗?
http://developer.android.com/guide/developing/tools/aidl.html
说“Java编程语言中的所有原始类型(例如int、long、char、boolean等)”
但是AIDL中似乎不能使用short。
谢谢 !
Does AIDL support short type ?
http://developer.android.com/guide/developing/tools/aidl.html
It said "All primitive types in the Java programming language (such as int, long, char, boolean, and so on)"
But it seems cannot use short in AIDL.
thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为它不会:/所以使用 int 并将其转换回短类型
I think it does not :/ so use an int and cast it back to short afterwards