如何将数据文件作为参数传递给c ++中的函数?

时间:2016-03-17 16:48:59

标签: c++

使用此代码,我可以读取数据文件并将其放入数组中。但是现在我想在将文件作为参数的函数中转换此代码。有人知道我该怎么做吗?

int main(int argc, char const *argv[]){

if (argc < 2)
{   
     cerr << "input the name of file\n"<< endl;
}   

string program_name = argv[0];
ifstream input(argv[1]);
vector<vector<double> > v;

if (input)
{
    string line; 
    int i = 0;
    while (getline(input, line))
    {
        if (line[0] != '#')
        {
            v.push_back(vector<double>());
            stringstream split(line);
            double value;
            while (split >> value)
            {
                v.back().push_back(value);
            }           
        }
    }
}

for (int i = 0; i < v.size(); i++) 
{    
         for (int j = 0; j < v[i].size(); j++) 
         cout << v[i][j] << '\t';    
         cout << endl;
}

1 个答案:

答案 0 :(得分:2)

这样的东西?

void my_function(const std::string& filename,
                 vector< vector<double> >& v)
{
 //...
}

根据您的问题,该函数以字符串形式接收文件名,并传递矢量。

另一种方法是将文件作为流传递:

void somebody_function(std::istream& input_file,
                       vector< vector< double > >& v)
{
 //...
}