7

我试图让以下示例代码工作,以了解异步编程是否在 Android NDK 中工作。尽管 NDK 具有<future>被识别为标头的 STL,但std::async未被识别的 STL 未被识别。我尝试使用的代码如下:

#include <future>
#include <iostream>

struct Foo 
{
  Foo() : data(0) {}
  void sum(int i) { data +=i;}
  int data;
};

int main()
{
    Foo foo;
    auto f = std::async(&Foo::sum, &foo, 42);
    f.get();
    std::cout << foo.data << "\n";
}

此外,所有包含路径都已设置为 Properties->Paths and Symbols 下的指定文件夹

Errors
Description Resource    Path    Location    Type
invalid use of incomplete type 'std::__async_sfinae_helper<void (Foo::*)(int), void (Foo::*)(int), Foo*, int>::type {aka struct std::future<void>}' Sample.cpp  /Project12/jni  line 50 C/C++ Problem

Description Resource    Path    Location    Type
declaration of 'std::__async_sfinae_helper<void (Foo::*)(int), void (Foo::*)(int), Foo*, int>::type {aka struct std::future<void>}' Project12       line 111, external location: D:\android-ndk-r8e-windows-x86_64\android-ndk-r8e\sources\cxx-stl\gnu-libstdc++\4.6\include\future C/C++ Problem
4

1 回答 1

9

目前,Android NDK 并未包含所有 C++11 功能。来自 NDK r9b 的 Clang 3.3 编译器是 C++11 功能完整的,但是,STLstdlibAndroid 上不是。

C++11要使用Android 中的最新功能集,请使用来自Android NDK r9b. 将此行放入您的Application.mk文件中:

NDK_TOOLCHAIN_VERSION := clang

此外,将-std=c++11开关添加到LOCAL_CPPFLAGS变量:

LOCAL_CPPFLAGS += -std=c++11
于 2013-07-12T14:30:48.823 回答