You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
414 B
6 lines
414 B
3 years ago
|
# 前言
|
||
|
JNI是Java本地接口。它定义Android从托管代码(以Java或kotlin编程语言编写)到本地代码(C/C++编写)交互编译成字节码的一种方式。</br>
|
||
|
文档[Java Native Interface Specification](https://docs.oracle.com/javase/7/docs/technotes/guides/jni/spec/jniTOC.html)</br>
|
||
|
|
||
|
# 相关介绍文章如下:
|
||
|
### [JNI开发规范](https://blog.csdn.net/u011686167/article/details/81784979)
|