使用 visual studio 2012 编译时,此代码给我错误,但使用代码块就可以了

This code gives me errors when compiled using visual studio 2012, but with codeblocks it is okay

#include <iostream>
#include <string>
#include <fstream>
#include <sstream>
#include <vector>
#include <iterator>

#define ADDR "c:\Users\Library2\Desktop\Books record\"

using namespace std;

int main()
{
   ifstream fin(ADDR "reportcard.csv", ios::binary);
   string line;
   int rowCount=0;
   int rowIdx=0; 

   while(getline(fin,line)){
       rowCount++;
   }

   vector<string> data[**rowCount**];//this rowCount gave me "expression must have a constant value"

   fin.clear(); 
   fin.seekg(fin.beg); 

   while(getline(fin,line)) 
   {
      stringstream ss(line);  
      string value;
      while(getline(ss,value,',')){       
         data[rowIdx].push_back(value);
      }
      rowIdx++;   
   }

   fin.close();

   int colNum;
   string colName = "LAST PERSON";
   static int it;

   for(vector<string>::iterator it = data[0].begin(); it != data[0].end(); ++it)
   {
       if ((*it)== colName)
       {
           colNum = distance(data[0].begin(),it);//distance() gave me "no instances of function templates matches argument"
           break;
       }
   }
   cout << data[1][colNum] << "\t";

   return 0;
}
  1. 我想弄清楚为什么它给了我表达式必须有一个常量值。
  2. 我正在尝试寻找另一个可以在 visual studio 2012 中使用的与 distance() 相同的函数。

注意:此代码用于从名为 "LAST PERSON" 的列下的第一个单元格中查找和获取值。使用代码块时,此代码已经可以了。但我需要使用 visual studio.

这个

vector<string> data[rowCount];

是变长数组的声明。

变长数组不是标准的 C++ 功能。一些编译器有自己的语言扩展,允许使用可变长度数组。其他编译器没有这样的语言扩展。

您可以使用向量的向量代替数组,例如

std::vector<std::vector<std::string>> data;

注意文件是binaru模式打开的

ifstream fin(ADDR "reportcard.csv", ios::binary);

那么在一般情况下使用函数 std::getline 是不正确的。

while(getline(fin,line)){
    rowCount++;
}

当编译器看到这个时:

vector<string> data[rowCount];

它从data开始,向右看。它看到 '[' 并将 data 解释为 C 样式数组。然后它看到 rowCount 并检查它是否是编译时常量。如果不是,则此代码违反标准。不过,一些编译器允许将其作为语言扩展。

总而言之,您定义了 rowCountvector<string> 类型元素的 C 样式数组。你一定是把 [] 误认为是 () 或 {}。您很可能想写

std::vector<std::string> data(rowCount); // a vector of rowCount strings