我收到此错误,并搜索了4-6个小时以尝试找到解决方案,但是在我的特定情况下我的搜索都没有产生任何结果,因此这是我的main.cpp。

#include <iostream>
#include <string>
#include "Entrepreneur.h"
#include <fstream>

using namespace std;

bool operator >(const Entrepreneur & Group1,const Entrepreneur & Group2)
{
    if((Group1.Points > Group2.Points || Group1.Points == Group2.Points) && Group1.Profit > Group2.Profit )
    {
        return true;
    }
    else
    {
        return false;
    };
};

ostream &operator<<( ostream &output,const Entrepreneur &Group1)
{
 output <<"\nItem : " << Group1.Item << "\nNr : " << Group1.Nr << "\nDonation : R" << Group1.Donation << "\nStart up amount : R" << Group1.StartUpAmt << "\nExpenses : R" << Group1.Expenses <<"\nPoints : " << Group1.Points << "\nSold : " << Group1.Sold << endl;;
 return output;
};

    istream &operator>>( istream  &input,const Entrepreneur & Group1)
{
    cout << "Enter Items to be sold,Donation amount,number of members & startup amount. Seperated by a space." << endl;

    input >> Group1.Item >> Group1.Donation >> Group1.Nr >> Group1.StartUpAmt;
    return input;
};

int main()
{


    return 0;
};


这是我的头文件。

#ifndef ENTREPRENEUR_H_INCLUDED
#define ENTREPRENEUR_H_INCLUDED
#include <iostream>
#include <string>

using namespace std;

class Entrepreneur{
    private:
        string Item;
        int Nr;
        double Donation;
        double StartUpAmt;
        double Expenses;
        double Income;
        double Profit;
        int Points;
        bool Sold;
    public:
        Entrepreneur(){
            Item = "Not Decided";
            Nr = 1;
            Donation = 0;
            StartUpAmt = 0;
            Expenses = 0;
            Income = 0;
            Profit = 0;
            Points = 0;
            Sold = 0;
        };
        void CreatGroup(string iItem,int iNr,double iDonation,double iStartUpAmt){
            Item = iItem;
            Nr = iNr;
            Donation = iDonation;
            StartUpAmt = iStartUpAmt;
        };
        void DisplayGroup(){
            cout << "\nItem : " << Item << "\nNr : " << Nr << "\nDonation : R" << Donation << "\nStart up amount : R" << StartUpAmt << "\nExpenses : R" << Expenses << "\nIncome : R" << Income << "\nProfit : R" << Profit << "\nPoints : " << Points << "\nSold : " << Sold << endl;
        };
        void set_info(double iExpenses,double iIncome,bool iSold){
            Expenses = iExpenses;
            Income = iIncome;
            Sold = iSold;
        };
        void calc_profit(double iDonation,double iStartUpAmt,double iExpenses,double iIncome){
            Donation = iDonation;
            StartUpAmt = iStartUpAmt;
            Expenses = iExpenses;
            Income = iIncome;

            Profit = Income + (StartUpAmt + Donation) - Expenses;
        };
        void update_points(){
            Points = 0;

            if(Nr < 3)
            {
                Points ++;
            }
            else
            {
                Points + 2;
            }
            if(Donation == 0)
            {
                Points ++;
            }
            if(Sold == 1)
            {
                Points ++;
            }
        };
        void Display(){
            cout << "Congratulations to all groups that partook in the challenge !" << endl;
        };

        friend bool operator >(const Entrepreneur & Group1,const Entrepreneur & Group2);
        friend ostream &operator<<( ostream &output,const Entrepreneur & Group1);
        friend istream &operator>>( istream  &input,const Entrepreneur & Group1);


};

#endif // ENTREPRENEUR_H_INCLUDED


因此错误来自于使操作员超负荷的朋友成员>>
在Entrepreneur.h中的Entrepreneur类中

friend istream &operator>>( istream  &input,const Entrepreneur & Group1);


在main.cpp中:

istream &operator>>( istream  &input,const Entrepreneur & Group1)
{
    cout << "Enter Items to be sold,Donation amount,number of members & startup amount. Seperated by a space." << endl;

    input >> Group1.Item >> Group1.Donation >> Group1.Nr >> Group1.StartUpAmt;
    return input;
};


我通常会在Google上10分钟在这里碰到一堵墙,而且我会修复的,但是这对我有好处。 PS程序没有完成,当我开始测试时发现这个。
提前致谢。

最佳答案

您正在尝试读入const对象

istream &operator>>(istream  &input, const Entrepreneur & Group1)


这就是为什么你

input >> Group1.Item >> Group1.Donation >> Group1.Nr >> Group1.StartUpAmt;


无法编译。除去参数声明中的const

一个无关的问题

Points + 2;


这是无操作声明。

关于c++ - C++错误:“输入>> Group1-> Entrepreneur::Item” |中的“operator >>”不匹配,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36407380/

10-11 16:37