博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Android Pro] 小心ReleaseByteArrayElements 中的参数问题
阅读量:5913 次
发布时间:2019-06-19

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

 

referen to :

在Sun的官方文档中,关于该函数的用法如下

The array is returned to the calling Java language method, which in turn, garbage collects the reference to the array when it is no longer used. The array can be explicitly freed with the following call.

(*env)-> ReleaseByteArrayElements(env, jb,                                         (jbyte *)m, 0);

The last argument to the ReleaseByteArrayElements function above can have the following values:

  • 0: Updates to the array from within the C code are reflected in the Java language copy.

     

  • JNI_COMMIT: The Java language copy is updated, but the local jbyteArray is not freed.

     

  • JNI_ABORT: Changes are not copied back, but the jbyteArray is freed. The value is used only if the array is obtained with a get mode of JNI_TRUE meaning the array is a copy.

小心最后一个参数,如果为0是会释放 m 所指向的内存的. 如果M刚好指向一个栈上的数组的话,这样可能在Release 版本中造成内存方面的随机错误.可以用JNI_COMMIT来避免.

其实现代码也许如下

+void

+KaffeJNI_ReleaseByteArrayElements(JNIEnv* env UNUSED, jbyteArray arr, jbyte* elems, jint mode)
+{
+ BEGIN_EXCEPTION_HANDLING_VOID();
+
+ if (elems != unhand_array((HArrayOfByte*)arr)->body) {
+ switch (mode) {
+ case JNI_COMMIT:
+ memcpy(unhand_array((HArrayOfByte*)arr)->body, elems, obj_length((HArrayOfByte*)arr) * sizeof(jbyte));
+ break;
+ case 0:
+ memcpy(unhand_array((HArrayOfByte*)arr)->body, elems, obj_length((HArrayOfByte*)arr) * sizeof(jbyte));
+ KFREE(elems);
+ break;
+ case JNI_ABORT:
+ KFREE(elems);
+ break;
+ }
+ }
+ END_EXCEPTION_HANDLING();
+}

JNI_COMMIT forces the native array to be copied back to the original array in the Java virtual machine. JNI_ABORT frees the memory allocated for the native array without copying back the new contents

转载地址:http://ebmpx.baihongyu.com/

你可能感兴趣的文章
垂直类IT知识服务平台与综合类知识服务平台
查看>>
JavaScript模块化编程之AMD
查看>>
ASP.NET Core 入门教程 4、ASP.NET Core MVC控制器入门
查看>>
腾讯 AI Lab 正式开源PocketFlow,让深度学习放入手机!
查看>>
HTTP 200 OK和HTTP 304 Not modified的由来
查看>>
移动端优化篇
查看>>
使用TS+Sequelize实现更简洁的CRUD
查看>>
Python方法(一) - 类的内部方法
查看>>
flutter初探,从零开始搭建一个app
查看>>
深入理解 Javascript 之 JS的解析与执行过程
查看>>
Mycat的实践一:初始Mycat
查看>>
redis ----分布式锁
查看>>
Mac如何实现免密登录阿里云服务器
查看>>
Java知识点总结(JDBC-事务)
查看>>
小程序根据索引滚动指定的位置
查看>>
JavaScript基础系列--打败this
查看>>
如何开启MySQL慢查询日志
查看>>
windows一键部署java项目
查看>>
用 Go 来了解一下 Redis 通讯协议
查看>>
《深入浅出mysql》学习笔记
查看>>