博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android SDK NDK开发总结
阅读量:5788 次
发布时间:2019-06-18

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

 

描述:http://talent.baidu.com/external/baidu/index.html#/jobDetail/2/1237247043

性能优化:

1. GPU加速

2. Neon指令集优化

3. 汇编

4. 用int优化以及多线程

 

NDK特性:

1. Davek虚拟机对应用内存申请设置上限,超过会内存溢出,native方法内存自由malloc

2. Android局部引用表上限512个,局部引用要注意及时回收,减少循环和无节制的局部引用申请,以免超出范围,如需更多,需要通过接口申请

 

NDK中常见错误:

1. 空指针:

2. (char*)malloc(len+1) ,申请内存大小时最后一个字节要为0, 表示字符串结尾.

3. 动态内存申请要及时free掉.  

4. string catenate, 字符串横向拼接, msg = strcat(msg, "new string"), msg的内存要足够大,能够容纳下自身和追加的长度.

 

 

MVP:

MVVM:https://gold.xitu.io/entry/56781baf00b01b78ac54c10a (DataBindingLibrary)

转载于:https://www.cnblogs.com/alanfang/p/6214652.html

你可能感兴趣的文章
EasyUI基础入门之Easyloader(载入器)
查看>>
Uva 839 Not so Mobile
查看>>
30款超酷的HTTP 404页面未找到错误设计
查看>>
程序猿必备 MyEclipse2013-2014系列
查看>>
java中ArrayList 、LinkList区别
查看>>
Spring ’14 Wave Update: Installing Dynamics CRM on Tablets for Windows 8.1
查看>>
利用rand7()构造rand10()
查看>>
MySQL 备份与恢复
查看>>
吃午饭前,按书上的代码写会儿--Hunt the Wumpus第一个版本
查看>>
easyui中combobox的值改变onchang事件
查看>>
Eclipse魔法堂:任务管理器
查看>>
一周自学动态站点设计
查看>>
poj万人题
查看>>
Android-Universal-Image-Loader
查看>>
Android 从硬件到应用:一步一步向上爬 4 -- 使用 JNI 方法调硬件驱动
查看>>
TEST
查看>>
loadrunner 的Administration Page里面设置
查看>>
程序员喜欢怎样的职位描述?(转)
查看>>
威胁快报|ProtonMiner挖矿蠕虫扩大攻击面,加速传播
查看>>
PAT A1116
查看>>