gpt4 book ai didi

c++ - gcc 中的错误,或 clang/MSVC 中的扩展

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:43:18 25 4
gpt4 key购买 nike

以下代码片段可以在 clang 和 MSVS 中编译,但不能在 gcc 中编译。

template<typename T> class clone_ptr;

template<typename T, typename U, typename ...Args>
clone_ptr<T> make_cloned( Args ...args );

// note: everything not needed for example cut out, so
// this class is neither complete nor correct
template<typename T>
class clone_ptr
{
public:
clone_ptr() : ptr(nullptr) {}
operator bool() { return ptr!=nullptr; }
T* operator->() { return ptr; }
private:
clone_ptr(T* p) : ptr(p) {}
T* ptr;

template<class T1,class U1, typename ...Args>
friend clone_ptr<T1> make_cloned( Args ...args );
};

template<typename T, typename U=T, typename ...Args>
clone_ptr<T> make_cloned( Args ...args )
{
return {new U(args...)};
}

// ----------------------------------------------

#include <string>
#include <vector>
#include <iostream>

using namespace std;

struct Base
{
int a;
Base( int a=0 ) : a(a) {}
virtual string foo() { return "Base "+to_string(a); };
virtual ~Base() {}
};

struct Sub : Base
{
Sub( int a=0 ) : Base(a) {}
virtual string foo() override { return "Sub "+to_string(a); };
};

string testit()
{
std::vector< clone_ptr< Base > > vec;

vec.push_back( make_cloned<Base>(7) );
vec.emplace_back();
vec.push_back( make_cloned<Base,Sub>(5) );

string ss;
for( auto&& a : vec )
{
ss += a?a->foo():"<empty>";
}

return ss;
}

int main()
{
cout << testit() << endl;
}


gcc 提示:

error: no matching function for call to 'make_cloned(int)'
vec.push_back( make_cloned<Base>(7) );
note: candidate is:
note: template<class T, class U, class ... Args> clone_ptr<T> make_cloned(Args ...)
clone_ptr<T> make_cloned( Args ...args )
^
note: template argument deduction/substitution failed:
note: couldn't deduce template parameter 'U'
vec.push_back( make_cloned<Base>(7) );

这是 gcc 中的错误吗?是否有解决方法只依赖于符合标准的 C++?

最佳答案

确实,这看起来像是一个错误。解决方法是将默认模板参数分离到第二个函数中。在 clone_ptr 中,您有两个 friend :

template<class T1, typename ...Args>
friend clone_ptr<T1> make_cloned( Args ...args );
template<class T1, class U1, typename ...Args>
friend clone_ptr<T1> make_cloned( Args ...args );

定义很简单:

template<typename T, typename ...Args>
clone_ptr<T> make_cloned( Args ...args ) { return {new T(args...)}; }
template<typename T, typename U, typename ...Args>
clone_ptr<T> make_cloned( Args ...args ) { return {new U(args...)}; }

使用 gcc 4.8.3 和 clang 3.5 测试。

编辑:经过调查,我能够以两种不同的方式让您的代码与 gcc 4.8.3 一起工作:

  1. 完全删除模板函数声明

    // this is not needed:
    template<typename T, typename U, typename ...Args>
    clone_ptr<T> make_cloned( Args ...args );
  2. 将模板函数定义中的默认模板参数定义移动到声明中:

    template<typename T, typename U = T, typename ...Args>
    clone_ptr<T> make_cloned( Args ...args );

    template<typename T, typename U, typename ...Args>
    clone_ptr<T> make_cloned( Args ...args )
    {
    return {new U(args...)};
    }

我仍然认为这是 gcc 的问题,但这样您的代码就可以工作了。

关于c++ - gcc 中的错误,或 clang/MSVC 中的扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28854491/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com