C++11在Android NDK中已经支持了,本文主要介绍如何在NDK中添加C++11标准的支持。

在开源项目Cocos2d-x中,已经添加了C++11标准的支持。


1.修改Application.mk文件,添加NDK_TOOLCHAIN_VERSION

NDK_TOOLCHAIN_VERSION=4.8

2.添加APP_CPPFLAGS,在命令行编辑时支持C++11

APP_CPPFLAGS := -frtti -std=c++11 

然后编写测试函数,在JNI中调用此函数即可。

#include #include #include using namespace::std;#define  LOG_TAG    "cachetest"#define  LOGI(...)  __android_log_print(ANDROID_LOG_INFO,LOG_TAG,__VA_ARGS__)template class MyArray{private:    vector m_Array; public:    MyArray() { }     MyArray(const initializer_list& il)    {        // Manually populate the elements of the array from initializer_list x        for (auto x: il){ // use range-based for statement to iterate over the elements of the initializer list            m_Array.push_back(x); // push them into the array manually}}void showContent(){//old wayLOGI("in old way");for (std::vector::iterator itr = m_Array.begin(); itr != m_Array.end(); ++itr){LOGI("%d",(*itr));}LOGI("in c++11 new way");for (auto x: m_Array){ //x is readonlyLOGI("%d",x);}}};void test_cpp_new_version_11(){auto x = 1;//int x = 1;int *p = nullptr;//int *p = NULL;MyArray foo = { 3, 4, 6, 9 };foo.showContent();}

具体视频教程,可以参考海同网校视频课程<安卓NDK>开发。

http://www.iotekclass.com/goods/courseDetail?goodId=83



更多相关文章

  1. Android Apk反编译函数对应法则
  2. Android 的一些实用的函数
  3. android binder机制及其源码解析之第二节 重要函数讲解之常用数
  4. Android 抽象回调函数以及接口回调更新UI
  5. Android 依赖注入函数库Roboguice(一)
  6. Android中关于外部存储的一些重要函数
  7. Android NDK开发——操作JNI函数以及复杂对象的传递
  8. Android 内部存储相关的函数(getCacheDir,getDir, getFileStreamP
  9. cocos2d-x 通过JNI实现c/c++和Android的java层函数互调

随机推荐

  1. Android(安卓)适配器Adapter的学习
  2. Dagger-Android使用手册
  3. Android:Debug certificate expired on D
  4. Android(安卓)API学习 SoundPool 和 Medi
  5. android studio从Eclipse迁移
  6. android Animation 动画效果介绍
  7. 整理出15个Android很有用的代码片段
  8. android 字符串数组资源
  9. android Application学习之二
  10. uni-app 跳转Android原生界面(Activity),