c – 为什么会收到编译错误?

前端之家收集整理的这篇文章主要介绍了c – 为什么会收到编译错误?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用GCC 4.8来编译下面的代码
#include <memory>

template<typename T,typename ...Args>
    std::unique_ptr<T> make_unique(Args&& ...args) {
    return std::unique_ptr<T>(new T{std::forward<Args>(args)...});
}

struct S {
    template<class... Args>
    static std::unique_ptr<S> create(Args&&... args) {
        return make_unique<S>(std::forward<Args>(args)...);
    }
private: // if I remove this line,then the compilation is OK
    S(int) {}
    S() = default;
};

int main() {
    auto s1 = S::create(); // OK
    auto s2 = S::create(0); // Compilation error
}

任何人都可以从编译器中解释这个错误的原因?

main.cpp: In instantiation of ‘std::unique_ptr make_unique(Args&&
…) [with T = S; Args = {int}]’:

main.cpp:11:58: required from ‘static std::unique_ptr
S::create(Args&& …) [with Args = {int}]’

main.cpp:20:26: required from here

main.cpp:14:5: error: ‘S::S(int)’ is private

06001

main.cpp:5:65: error: within this context
return std::unique_ptr(new T{std::forward(args)…});

06002

解决方法

Can anyone explain me the reason of this error from the compiler?

使用int的构造函数被声明为private,这就是为什么它提供编译错误.请注意,构造函数正在从make_unique(不能访问私有成员)中调用,而不是从创建.

但是,您可能想知道为什么第一次调用create()可以编译好,我认为这是因为GCC有bug.即使在这种情况下也不应该编译,因为默认构造函数也被声明为私有的. Clang正确地给出了两个呼叫的错误(see this).

无论如何,如果你想让他们保持私密,那么让make_unique成为班级的朋友.

原文链接:https://www.f2er.com/c/111914.html

猜你在找的C&C++相关文章