gpt4 book ai didi

c++ - 具有友元函数的模板类的链接器错误

转载 作者:行者123 更新时间:2023-11-30 04:00:06 24 4
gpt4 key购买 nike

我正在尝试用 forward_list 重新创建一个堆栈。但是,我使用友元函数来重载 + 和 << 运算符。

#pragma once
#include <forward_list>
template <class T> class Stack;

template <class T>
Stack<T> operator+(const Stack<T> &a, const Stack<T> &b){
//implementation
}

template <class T>
std::ostream &operator<<(std::ostream &output, Stack<T> &s)
{
//implementation
}

template <class T>
class Stack
{
friend Stack<T> operator+(const Stack<T> &a, const Stack<T> &b);
friend std::ostream &operator<<(std::ostream &output, Stack<T> &s);
std::forward_list<T> l;
public:
//Some public functions
};

对于这两个友元函数,当我尝试在我的 main 中调用它们时,我得到一个链接器错误:

int main(){
Stack<int> st;
st.push(4);
Stack<int> st2;
st2.push(8);
cout<<st + st2<<endl;
return 0;
}

这些是错误:

 error LNK2019: unresolved external symbol "class Stack<int> __cdecl operator+(class Stack<int> const &,class Stack<int> const &)" (??H@YA?AV?$Stack@H@@ABV0@0@Z) referenced in function _main
error LNK2019: unresolved external symbol "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl operator<<(class std::basic_ostream<char,struct std::char_traits<char> > &,class Stack<int> &)" (??6@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AAV01@AAV?$Stack@H@@@Z) referenced in function _main

提前致谢。

最佳答案

您在 Stack 类中的模板友元声明不太正确。您需要这样声明:

template<class T>
friend Stack<T> operator+(const Stack<T> &a, const Stack<T> &b);

template<class T>
friend std::ostream &operator<<(std::ostream &output, Stack<T> &s);

由于您使用的是MSVC,请see this Microsoft 文档以供进一步引用。

关于c++ - 具有友元函数的模板类的链接器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26502594/

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