功能参数太多了

MPN*_*ion 1 c++ header

我从头文件中收到此错误:too many arguments to function void printCandidateReport();.我是C++的新手,只需要一些正确的指导来解决这个错误.

我的头文件如下所示:

#ifndef CANDIDATE_H_INCLUDED
#define CANDIDATE_H_INCLUDED

// Max # of candidates permitted by this program
const int maxCandidates = 10;

// How many candidates in the national election?
int nCandidates;

// How many candidates in the primary for the state being processed
int nCandidatesInPrimary;

// Names of the candidates participating in this state's primary
extern std::string candidate[maxCandidates];

// Names of all candidates participating in the national election
std::string candidateNames[maxCandidates];

// How many votes wone by each candiate in this state's primary
int votesForCandidate[maxCandidates];

void readCandidates ();
void printCandidateReport ();
int findCandidate();
#endif
Run Code Online (Sandbox Code Playgroud)

和调用此头文件的文件:

#include <iostream>
#include "candidate.h"
/**
* Find the candidate with the indicated name. Returns the array index
* for the candidate if found, nCandidates if it cannot be found.
*/
int findCandidate(std::string name) {
    int result = nCandidates;
    for (int i = 0; i < nCandidates && result == nCandidates; ++i)
        if (candidateNames[i] == name)
            result = i;
    return result;
}

/**
* Print the report line for the indicated candidate
*/
void printCandidateReport(int candidateNum) {
    int requiredToWin = (2 * totalDelegates + 2) / 3; // Note: the +2 rounds up
    if (delegatesWon[candidateNum] >= requiredToWin)
        cout << "* ";
    else
        cout << "  ";
    cout << delegatesWon[candidateNum] << " " << candidateNames[candidateNum]
         << endl;
}

/**
* read the list of candidate names, initializing their delegate counts to 0.
*/
void readCandidates() {
    cin >> nCandidates;
    string line;
    getline(cin, line);

    for (int i = 0; i < nCandidates; ++i) {
        getline(cin, candidateNames[i]);
        delegatesWon[i] = 0;
    }
}
Run Code Online (Sandbox Code Playgroud)

为什么我会收到此错误,我该如何解决?

Lef*_*ler 7

在头文件上,您声明:

void printCandidateReport ();
Run Code Online (Sandbox Code Playgroud)

但在实施方面是:

void printCandidateReport(int candidateNum){...}
Run Code Online (Sandbox Code Playgroud)

将头文件更改为

void printCandidateReport(int candidateNum);
Run Code Online (Sandbox Code Playgroud)