0

我正在尝试创建三个动态数组,其索引由文本文件中的行数确定。然后我需要修改它们的索引值。我在想全局数组将是我最好的选择。

出于某种原因,我不断收到以下编译器错误: secondLab.obj : error LNK2019: unresolved external symbol "void __cdecl arrayInput(...)

问题,我该如何解决这个问题并基本上满足我的程序目标。

这是我的代码:

#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <new>

using namespace std;

int INDEXES = 0;

string *names_Array = new string[INDEXES];
double *rates_Array = new double[INDEXES];
double *hours_Array = new double[INDEXES];

void subscript(ifstream&, int&, string&, double&, double&);
void arrayInput(istream&, string [], double [], double[],
     string&, double&, double&);

int main ()
{
    string names;
    double rates;
    double hours;

    string filename("employee sample file.txt");
    ifstream employeeInfo(filename.c_str());

    if (employeeInfo.fail())
    {
        cout << "Sorry, file was not successfully opened. "
             << "Please make sure your file exists and\n" 
             << "re-run the program." << endl;
    }   

    subscript(employeeInfo, INDEXES, names, rates, hours);

    arrayInput(employeeInfo, names_Array, rates_Array, hours_Array,
    names, rates, hours);

    cout << names_Array[0] << endl
         << names_Array[1] << endl
         << names_Array[2] << endl
         << names_Array[3] << endl
         << names_Array[4] << endl;

    delete[] names_Array;
    delete[] rates_Array;
    delete[] hours_Array;

    system("pause");
    return 0;
}

void subscript(ifstream& employeeInfo, int& INDEXES,
    string& names, double& rates, double& hours)
{
    while(!employeeInfo.eof())
    {   
        employeeInfo >> names >> rates >> hours;

        INDEXES++;
    }
}

void arrayInput(ifstream& employeeInfo, string names_Array[], 
    double rates_Array[], double hours_Array[], string& names, double& rates, double& hours)
{
    int i = 0;

    while(!employeeInfo.eof())
    {
        employeeInfo >> names >> rates >> hours;

        names_Array[i] = names;
        rates_Array[i] = rates;
        hours_Array[i] = hours;

        i++;
    }
}
4

3 回答 3

2

的声明和定义arrayInput不匹配,具体来说,一个带ifstream参数,另一个带istream. 改变

void arrayInput(istream&, string [], double [], double[],
 string&, double&, double&);

void arrayInput(ifstream&, string [], double [], double[],
 string&, double&, double&);
于 2012-11-23T20:42:49.117 回答
1

你可以先计算行数..然后启动数组..并将数据填充到数组..

 subscript(employeeInfo, INDEXES, names, rates, hours);
 names_Array = new string[INDEXES];
 rates_Array = new double[INDEXES];
 hours_Array = new double[INDEXES];
 arrayInput(employeeInfo, names_Array, rates_Array, hours_Array,names, rates, hours);

试试这样..

于 2012-11-23T20:45:21.973 回答
1

@jrok 在评论中已经回答了您关于链接错误的问题。然而,您的问题的主题是“如何让动态数组的索引由文件中的行确定”,您似乎已经通过遍历文件两次来做到这一点。这无论如何都不是“最佳”解决方案,甚至对于某些流(例如终端输入)也是不可能的。

std::vector不仅是“你最好的选择”(正如@jrok 所指出的那样),而且是标题问题的更好解决方案。事实上,整个代码只有几行,没有丑陋的全局“动态”数组。(更不用说你的实现是错误的,因为这些数组永远不会分配给INDEXES>0),更干净,更快(单次遍历):

#include <vector>
#include <fstream>

int main () {
   using namespace std;
   vector<string> names;
   vector<double> rates;
   vector<double> hours;

   ifstream file("employee sample file.txt");

   while( !file.eof() ) {
      string name;
      double rate, hour;
      file >> name >> rate >> hour >> ws;
      names.push_back(name);
      rates.push_back(rate);
      hours.push_back(hour);
   }
}

笔记:

  • push_back() 是摊销的常数时间。所以,不用担心效率
  • std::ws 是为了在迭代开始之前跳过任何尾随空格(例如文件中的尾随行)。
  • 没有乱七八糟的delete[]new所有的垃圾。

hth

于 2012-11-23T21:06:43.480 回答