首先,我要问的可能吗?
我目前有一个带有一个成员方法(读取)的程序,它在一个成员方法中从本地 .txt 文件中读取字符串,并将相同的数据输出到控制台。现在,我无法对数组的内容做任何事情,但是我需要在 Write 方法和代码中的任何其他地方使用数据。我使用了动态 C 样式数组,因为这是我所需要的,不允许使用向量等。一个解决方案或任何大方向都会很棒!
我的结构由一个 Main.cpp、一个 ArrayStorage.cpp 类定义和一个 ArrayStorage.h 头文件组成。
我的代码如下:
数组存储.cpp
#include <fstream>
#include <iostream>
#include <ostream>
#include <string>
#include "ArrayStorage.h"
using namespace std;
void ArrayStorage::read(ifstream &fin1)
{
int index = 0;
int arrayLength = 0;
string firstWord;
if(fin1.is_open())
{
fin1 >> firstWord;
fin1 >> arrayLength;
string* arrayOfWords;
arrayOfWords = new string[arrayLength];
while(!fin1.eof())
{
fin1 >> arrayOfWords[index];
cout << arrayOfWords[index];
cout << "\n";
index++;
}
delete [] arrayOfWords;
fin1.close();
}
}
void ArrayStorage::write(ofstream &out1)
{
//fout.close();
}
数组存储.h
#include <fstream> // Reading/Writing from file requires this standard library.
#include <iostream> // Needed for cin and cout
#include <ostream> // Needed for outputting to output file
#include <string> // Needed for string values
using namespace std;
#pragma once
class ArrayStorage
{
private:
public:
void read(ifstream &fin1); //reads data from a file
void write(ofstream &out1); //output data to an output stream(ostream)
bool exists(); //return true or false depending whether or not a given word exists
void stdExists(); //^^ use either std::count() or std::find() inside here
};
主文件
#include <fstream>
#include <iostream>
using namespace std;
#include "ArrayStorage.h"
#include "LinkedListStorage.h"
int main(int argc, char **argv) {
string find = "pixel";
ifstream fin1("ACW2_data.txt");
ofstream out1("1-In-SortedRead.txt");
if(!fin1.is_open())
{
cout << "FAIL" << endl;
return 1;
}
ArrayStorage arrayStorage1;
// read in values into data structure
arrayStorage1.read(fin1);
// output values in data structure to file
arrayStorage1.write(out1);
fin1.close();
out1.close();
return(0);
}