gpt4 book ai didi

c++ - 从模板中通过引用返回

转载 作者:太空狗 更新时间:2023-10-29 20:54:52 24 4
gpt4 key购买 nike

从通过引用返回对象的模板函数返回 *thisthis 有什么区别?这两个选项在 VS2013 中编译没有任何问题;

代码是这样的

template <typename T>
class MyClass
{

public:
MyClass(){ }
~MyClass();

MyClass& operator=(const MyClass&);

};

template <typename T>
MyClass<T>& MyClass<T>::operator=(const MyClass& s_from)
{

//do some work
return *this;
//also works
//return this
}

template <typename T>
MyClass<T>::~MyClass()
{

}

最佳答案

对于模板编译器只检查语法。当你实例化你的模板并尝试复制对象时,你会得到返回的编译错误:

 MyQueue<int> a;
MyQueue<int> b;
a = b; /// ops

或者您可以显式实例化您的模板(在这种情况下编译器生成所有成员并且您会看到所有错误)

template class MyQueue<int>;

所以 return *this 是从成员函数或运算符返回对象引用的唯一方法。

关于c++ - 从模板中通过引用返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37776859/

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