gpt4 book ai didi

c++ - 模板 = 未找到运算符

转载 作者:行者123 更新时间:2023-11-30 02:21:19 25 4
gpt4 key购买 nike

我想创建模板运算符=,但它不起作用;

class A
{
public:

template<class T>
A& A::operator=(const T& obj)
{
return *this;
}
};

是的,类是空的,但运算符必须与任何类一起使用。

void main()
{
A a;
a = 1.3;
}

但是这给出了错误

最佳答案

类定义中的成员函数定义不需要A::

class A
{
public:

template<class T>
A& operator=(const T& obj)
{
return *this;
}
};

LIVE

或者您可以在类定义之外定义它。

class A
{
public:

template<class T>
A& operator=(const T& obj);
};

template<class T>
A& A::operator=(const T& obj)
{
return *this;
}

LIVE

关于c++ - 模板 = 未找到运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48473233/

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