错误:: make_unique不是'std'的成员


92

我正在尝试编译代码审查中发布的以下线程池程序以对其进行测试。

/codereview/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 ‘stdauto ptr1 = std::make_unique<unsigned>();
             ^
main.cpp:9:34: error: expected primary-expression before ‘unsignedauto ptr1 = std::make_unique<unsigned>();
                              ^
main.cpp:14:17: error: ‘make_unique’ is not a member of ‘stdauto ptr2 = std::make_unique<unsigned>();
             ^
main.cpp:14:34: error: expected primary-expression before ‘unsignedauto ptr2 = std::make_unique<unsigned>();

1
您正在使用什么编译器?
Matteo Italia

3
您使用什么编译器/标志?make_unique是c ++ 14的功能
MatthiasB

您很可能没有它的代码,因为它不属于c ++ 11?
Alex

他以某种方式使用c ++ 14功能,而您却没有。
BЈовић

将有一个make_unique的实现。它不是那么困难;)msdn.microsoft.com/en-us/library/dn439780.aspx
Alex

Answers:


143

make_unique即将发布的C ++ 14功能,因此即使它符合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)...));
}

(仅供参考,这是make_uniqueC ++ 14投票的最终版本。这包括覆盖数组的其他函数,但总体思路仍然相同。)


6
@ ali786取决于您的编译器。例如,使用GCC,您可以-std=c++1y在命令行中传递。
Angew不再为SO

1
@ ali786也许GCC 4.8.1不支持C ++ 14的这一部分?您是否查阅过其文档?顺便说一句,最新的GCC是4.9.0
Angew不再为2014年

3
@ ali786实际上,这不是编译器本身的功能,而是标准库的实现(在您的情况下,很可能是libstdc ++)。Afaik,仅在gcc 4.9.0中添加了对此功能的支持(这也由本帖子建议)。
ComicSansMS 2014年

1
@VictorEijkhout是的,从字面上看。如果您无法运行它,则可能需要放一个最小的示例并发布一个新问题。(还有,您可以将文本放在反引号中'使其显示为注释中的代码)
ComicSansMS 2015年

1
我有gcc 5.4,即使尝试这里提到的所有标志,我仍然会收到此错误。
蒂莫西·斯旺

16

如果您有最新的编译器,则可以在构建设置中更改以下内容:

 C++ Language Dialect    C++14[-std=c++14]

这对我有用。


1
这特定于GCC / Clang,可能不适用于其他编译器。
tambre

7

1.gcc版本> = 5
2.CXXFLAGS + = -std = c ++ 14
3. #include <内存>


1

这是我在使用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...


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"
            }
        }
       ....
    }

而已...

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.