我正在尝试编译代码审查时发布的以下线程池程序来测试它。
https://codereview.stackexchange.com/questions/55100/platform-independant-thread-pool-v4
但我收到了错误
threadpool.hpp: In member function ‘std::future<decltype (task((forward<Args>)(args)...))> threadpool::enqueue_task(Func&&, Args&& ...)’:
threadpool.hpp:94:28: error: ‘make_unique’ was not declared in this scope
auto package_ptr = make_unique<task_package_impl<R, decltype(bound_task)>> (std::move(bound_task), std::move(promise));
^
threadpool.hpp:94:81: error: expected primary-expression before ‘>’ token
auto package_ptr = make_unique<task_package_impl<R, decltype(bound_task)>>(std::move(bound_task), std::move(promise));
^
main.cpp: In function ‘int main()’:
main.cpp:9:17: error: ‘make_unique’ is not a member of ‘std’
auto ptr1 = std::make_unique<unsigned>();
^
main.cpp:9:34: error: expected primary-expression before ‘unsigned’
auto ptr1 = std::make_unique<unsigned>();
^
main.cpp:14:17: error: ‘make_unique’ is not a member of ‘std’
auto ptr2 = std::make_unique<unsigned>();
^
main.cpp:14:34: error: expected primary-expression before ‘unsigned’
auto ptr2 = std::make_unique<unsigned>();
答案 0 :(得分:113)
make_unique
是upcoming C++14 feature,因此可能在您的编译器中不可用,即使它符合C ++ 11标准。
然而,您可以轻松推出自己的实现:
template<typename T, typename... Args>
std::unique_ptr<T> make_unique(Args&&... args) {
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}
(仅供参考,here is the final version of make_unique
投票进入C ++ 14。这包括覆盖数组的其他功能,但总体思路仍然相同。)
答案 1 :(得分:13)
如果您有最新的编译器,则可以在构建设置中更改以下内容:
C++ Language Dialect C++14[-std=c++14]
这适合我。
答案 2 :(得分:1)
1.gcc版本> = 5
2.CXXFLAGS + = -std = c ++ 14
3. #include
答案 3 :(得分:1)
如果您坚持使用 c ++ 11 ,则可以从https://bintray.com/kotlin/kotlinx/kotlinx.metadata获得make_unique
,abseil-cpp是从Google内部代码库中提取的C ++库的开源集合。>
答案 4 :(得分:0)
这是我在使用XCode时发生的情况(我正在使用2019年最新版本的XCode ...)。我正在使用CMake进行构建集成。在CMakeLists.txt中使用以下指令为我修复了该问题:
set(CMAKE_CXX_STANDARD 14)
。
示例:
cmake_minimum_required(VERSION 3.14.0)
set(CMAKE_CXX_STANDARD 14)
# Rest of your declarations...
答案 5 :(得分:0)
对于我来说 ,我需要更新std = c ++
我是说在我的gradle文件中是
android {
...
defaultConfig {
...
externalNativeBuild {
cmake {
cppFlags "-std=c++11", "-Wall"
arguments "-DANDROID_STL=c++_static",
"-DARCORE_LIBPATH=${arcore_libpath}/jni",
"-DARCORE_INCLUDE=${project.rootDir}/app/src/main/libs"
}
}
....
}
我更改了此行
android {
...
defaultConfig {
...
externalNativeBuild {
cmake {
cppFlags "-std=c++17", "-Wall" <-- this number from 11 to 17 (or 14)
arguments "-DANDROID_STL=c++_static",
"-DARCORE_LIBPATH=${arcore_libpath}/jni",
"-DARCORE_INCLUDE=${project.rootDir}/app/src/main/libs"
}
}
....
}
就这样...