无法解析的外部符号-如何修复

Unresolved External Symbol - How to fix?

本文关键字:符号 何修复 外部      更新时间:2023-10-16

我对编程很陌生。我遇到了这个我无法解决的错误。你应该可以输入一个分数,它会使用预先放入数组中的信息,告诉你有多少学生得到了那个分数。

我得到的错误信息是:
1>------ Build started: Project: Ch11_27, Configuration: Debug Win32 ------
1>Build started 4/4/2013 1:17:26 PM.
1>InitializeBuildStatus:
1>  Touching "DebugCh11_27.unsuccessfulbuild".
1>ClCompile:
1>  main.cpp
1>main.obj : error LNK2019: unresolved external symbol "void __cdecl checkScore(int * const,int * const)" (?checkScore@@YAXQAH0@Z) referenced in function _main
1>F:a School Stuff TJC Spring 2013Intro ProgC++ ProjectsCh11_27DebugCh11_27.exe : fatal error LNK1120: 1 unresolved externals
1>
1>Build FAILED.
下面是我的代码:
//Advanced27.cpp - displays the number of students
//earning a specific score
//Created/revised by <your name> on <current date>
#include <iostream>
using namespace std;
//Function Prototypes
void checkScore( int scores[], int storage[]);
int main()
{
    //declare array
    int scores[20] = {90, 54, 23, 75, 67, 89, 99, 100, 34, 99, 
                      97, 76, 73, 72, 56, 73, 72, 20, 86, 99};
    int storage[4] = {0};
    char answer = ' ';
    cout << "Do you want to check a grade? (Y/N): ";
    cin >> answer;
    answer = toupper(answer);
    while (answer = 'Y')
    {
        checkScore(scores, storage);
    cout << "Do you want to check a grade? (Y/N): ";
    cin >> answer;
    answer = toupper(answer);
    }
    system("pause");
    return 0;
}   //end of main function
//*****Function Defenitions*****
void checkGrade(int scores[], int storage[])
{
    int temp = 0;
    int earnedScore = 0;
    cout << "Enter a grade you want to check: ";
    cin >> earnedScore;
    for (int sub = 0; sub <= 20; sub +=1)
    {
        if (scores[sub] = earnedScore)
        {
            storage[temp] += 1;
        }
    }
}

问题是函数定义的命名与函数声明的命名不同:

void checkScore( int scores[], int storage[]);
void checkGrade(int scores[], int storage[])

你需要选择其中之一。编译器得到对checkScore的调用,并看到它没有定义。将定义更改为checkScore将解决此问题。

main()函数下面的函数checkGrade()可能应该称为void checkScore( int scores[], int storage[])

这意味着您声明了要命名为checkScore的函数,但是您定义了要命名为checkGrade的函数。然后,当main()尝试调用checkScore时,编译器说"OK,上面已经声明了。"即使我找不到,我也会允许的。它可能在不同的库或源文件中。"然后链接器就有责任找到它。由于链接器找到了checkGrade,但没有找到checkScore,因此链接器抛出错误,称未定义引用(main()引用了checkScore而不是checkGrade)。

看来你已经声明了你的函数

void checkScore( int scores[], int storage[]);

,但实际上没有定义它(给它一个函数体)。像

这样定义函数
void checkScore( int scores[], int storage[]){
}