LNK2019:未解析的外部符号...在函数_main中引用

时间:2013-08-02 23:45:17

标签: c++ function file-io multidimensional-array

我正在上一门入门编程课程,所以我希望这个问题不会太糟糕。到目前为止,我已经修复了我的Main函数中的所有问题,但后来我取消注释了我的Blob函数调用并出现了一个错误,我显然无法弄清楚。我已经研究过它,并没有找到任何适合我的问题的东西。

我相信它与我用来修复我的2D数组的先前问题(这是分配所需)的**有关。我已将评论列在代码顶部,以阐明该计划的目标。

错误是:

  

错误LNK2019:未解析的外部符号“void __cdecl Blob(char *   函数_main c:\ Users \ Laura \ documents \ visual studio 2010 \ Projects \ pr9_lt12e \ pr9_lt12e \ p9_lt12e.obj

中引用了*,int,int)“(?Blob @@ YAXPAPADHH @ Z)

此外,输出的数组的第一行向左偏移10个空格。第13列应该有一个'X',但是它显示为3.我已经手动更改了数组的值,以便arr [0] [12] ='X'(在数组打印出来之前)但位置确实如此没变。我仍然可以在没有修复的情况下使用该程序,因为它只有几个点。

我的整个代码是:

/*
         SUMMARY 
           This program will read in data from a file and store it in a two-dimensional array. 
           From there it will detect all of the groupings of characters, or "blobs", in the file and count them.

         INPUT 
           The program will read in information from a file called "blob.txt".

           BAD DATA CHECKING: 
                N/A

         OUTPUT 
            The program will output the amount of blobs in the file.

         DATA STRUCTURES
            N/A

         ASSUMPTIONS  
          -The file will have 20 records. Each record will be 70 characters long and the character 
            will be either an X or a blank space/whitespace.

*/

#include <iostream>
#include <iomanip>
#include <cmath>    
#include <fstream>
#include <string>
using namespace std;

//GLOBAL CONSTANTS
const int   ONE_D = 22,
            TWO_D = 72,
            SEVEN = 7;

const char  X = 'X',
            B = ' ';

//FUNCTION PROTOTYPES
void Blob(char**, int, int);    //Retrieves data from the file and places it into the array


//MAIN FUNCTION
int main()
{
    //Declare variables
    ifstream file;

    string line;

//  char character;

    int index1 = 0,
        index2 = 0,
        col1 = 0,
        col2 = 0,
        blobCount = 0;

    //Declare the 2D array. From course website.
    char ** arr;
    arr = new char * [ONE_D];
    for (index1 = 0; index1 < ONE_D; index1++)
        arr[index1] = new char [TWO_D];

    //Welcome message
    cout << "Welcome to the Recursive Blob Finder program!\n\n";

    //Open the file
    file.open("blob.txt");

    //Check to see if file has been opened
    if (file.is_open())
        cout << "The file has been opened!\n\n";
    else
        cout << "The file has not been opened!\n\n";

    //Read in data from the file and write to the array
    for (index1 = 0; index1 < 20; index1++) {
        getline(file, line);
        strcpy_s(arr[index1], 72, line.c_str()); 
    }

    ////Row 1 is offset by -10. Adjust first row.
    //arr[0][2] = B;
    //arr[0][12] = X;

    //Clear non-'X' cells
        for (index1 = 0; index1 < 22; index1++) {
            for (index2 = 0; index2 < 72; index2++) {
                if (arr[index1][index2] != X)
                    arr[index1][index2] = B;
            }
        }

    //Print numbered lines
    for (col1 = 1; col1 < 8; col1++)    
        cout << "         " << col1;

    cout << endl;

    for (col2 = 1; col2 < 8; col2++)    
        cout << "1234567890";

    cout << endl;    //EDIT IS HERE

    //Print array
    for (index2 = 0; index2 < 20; index2++) {

        for (index1 = 0; index1< 70; index1++)
            cout << arr[index2][index1];

        cout << endl;
    }

    //Search array for 'X' characters
    for (index1 = 0; index1 < 20; index1++)     {

        for (index2 = 0; index2 < 70; index2++) {

            //When X is found, add 1 to blob count. Blob function will clear out the remaining blob characters
            if (arr[index1][index2] == X)   {
                blobCount++;
                Blob(arr, index1, index2);
            }
        }
    }

    //Close the file
    file.close();

    return 0;

}


//OTHER FUNCTIONS   

//Name: Blob
//Description:  Recursive function to find and clear each blob.
void Blob(char **c[ONE_D][TWO_D], int row, int col)  
{
        //Eliminate one blob at a time

    //Potential positions for 'X' after clearing the last X:         Ox
    //                                                              xxx


    if (**c[row][col]==X)   {
        **c[row][col] = B;

        //Test for X's connected to current blob
        if (**c[row][col+1]==X)
            Blob (c, row, col);

        if (**c[row+1][col-1]==X)
            Blob (c, row, col);

        if (**c[row+1][col] == X)
            Blob (c, row, col);

        if (**c[row+1][col+1]==X)
            Blob (c, row, col);
    }   
}

我尝试过的一些事情包括改变原型:

void Blob(char** c[ONE_D][TWO_D], int, int);

函数调用:

Blob(arr[][], index1, index2);
Blob(arr[][72], index1, index2);
Blob(arr[22][72], index1, index2);

和函数定义参数:

void Blob(char c[ONE_D][TWO_D], int row, int col)

1 个答案:

答案 0 :(得分:3)

问题在于您声明了一个名为blob(char **, int, int)的函数,然后将该声明更改为blob(char **c[ONE_D][TWO_D], int, int)

鉴于您确实将char **arr传递给函数,我建议您删除[ONE_D][TWO_D]部分,因为这实际上是使您的函数采用4维数组[或指向一个指向二维数组的指针,可能是]。

您还需要将**c[...][...]更改为c[...][...]