Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在构建一个 Java/native 库,该库具有本地网络和视频图像处理(主要使用 c++11 编写)和 Java 开发人员界面。
问题是整个事情在 jni 调用期间经常卡住。我们使用最新的 ndk-r8e 并在本地运行多个线程,使用 std::thread 创建。
欢迎任何想法。
最后我们使用了 boost::thread 而不是 std::thread ,这解决了我们的问题。我猜 NDK r8e 对 C++11 的支持真的很差。