当前位置:   article > 正文

重载时出现重复定义错误严重性 严重性 代码 说明 项目 文件 行 错误_1>cyolodetection.obj : error lnk2005: "class std::

1>cyolodetection.obj : error lnk2005: "class std::basic_string

以下出现严重性 代码 说明 项目 文件 行
错误 LNK2005 “class std::basic_ostream<char,struct std::char_traits > & __cdecl operator<<(class std::basic_ostream<char,struct std::char_traits > &,class Player const &)” (??6@YAAAV?$basic_ostream@DU
严重性 代码 说明 项目 文件 行
错误 LNK1169 找到一个或多个多重定义的符号
解决方案:
把符号重载函数写在。cpp实现文件就可以了。不能写在。h内部。
#ifndef SPEAKER_H
#define SPEAKER_H

#define _CRT_SECURE_NO_WARNINGS
#include
#include
#include
#include
#include
using namespace std;

void Showdeque(deque&AllScore);

class Player
{

friend ostream& operator<<(ostream& os, const Player& MyPlayer);
  • 1

public:
unsigned int wAge=0;
string szName=0;
dequeAllScore;
double AveScore=0;
public:
Player() = default;
Player(unsigned int wAge,string szName,double AveScore):
wAge(wAge), szName(szName), AveScore(AveScore){}

};

// ostream& operator<< ( ostream& ofs, const Player& MyPlayer)
//{
// /*os << MyPlayer.szName
// << " "
// << MyPlayer.wAge
// << “平均分:”
// << MyPlayer.AveScore
// <<endl; */
// //Showdeque(MyPlayer.AllScore);
// return ofs;
//}

void CreatSpeakBook(map<unsigned int, Player>&PlayBook);
void ShowPlayerInfo(map<unsigned int, Player>&PlayBook);

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/134695?site
推荐阅读
相关标签