2

这个问题来自: c++ 将文本文件读入 vector<vector> 然后根据内部向量中的第一个单词写入向量或数组 。我正在编辑这个问题,因为第一个问题只是一个拼写错误(不能问一个单独的 Q,因为我之前尝试过并且被否决了重复?,也无法删除 Q,因为有答案..),更重要的是问题是关于 cygwin c++ 编译器无法访问 c99 库。当使用 stod 而不是 strtod 时,我得到一个编译错误。问题是 _GLIB_CXX_USE_C99 未定义?

到目前为止的代码:

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

#if __cplusplus < 201103L
#warning No C++11 support
#endif

#if !defined(_GLIBCXX_USE_C99)
#warning No C99 library functions
#endif

#if defined(_GLIBCXX_HAVE_BROKEN_VSWPRINTF)
#warning Broken vswprintf
#endif

std::vector<double> GetValues(const std::vector<std::string>& src, int start, int end, std::string typeline)
{
    std::vector<double> ret;
    for(int i = start; i <= end; ++i)
    {
      if(typeline == "E3T" && i == 5)
    {
      ret.push_back(std::strtod(src[2].c_str(), nullptr));
      ret.push_back(std::strtod(src[i].c_str(), nullptr));
    }
      else
    {
          ret.push_back(std::strtod(src[i].c_str(), nullptr));
    }
    }
    return ret;
}

void PrintValues(const std::string& title, std::vector<std::vector<double>>& v)
{
    std::cout << title << std::endl;
    for(size_t line = 0; line < v.size(); ++line)
    {
        for(size_t val = 0; val < v[line].size(); ++val)
        {
            std::cout << v[line][val] << " ";
        }
        std::cout << std::endl;
    }
    std::cout << std::endl;
}

int main()
{
    std::vector<std::vector<std::string>> values;
    std::ifstream fin("example.2dm");
    for (std::string line; std::getline(fin, line); )
    {
        std::istringstream in(line);
        values.push_back(
            std::vector<std::string>(std::istream_iterator<std::string>(in),
            std::istream_iterator<std::string>()));
    }

    std::vector<std::vector<double>> cells;
    std::vector<std::vector<double>> nodes;
    for (size_t i = 0; i < values.size(); ++i) 
    {
        if(values[i][0] == "E3T")
        {
      cells.push_back(GetValues(values[i], 1, 5, "E3T"));
        }
        else if(values[i][0] == "E4Q")
        {
      cells.push_back(GetValues(values[i], 1, 6, "E4Q"));
        }
        else if(values[i][0] == "ND")
        {
      nodes.push_back(GetValues(values[i], 1, 4, "ND"));
        }
    }

    PrintValues("Cells", cells);
    PrintValues("Nodes", nodes);

    return 0;
}

编译警告(cygwin gcc c++):

$ g++ read_csv3.cpp -std=c++11
read_csv3.cpp:15:2: warning: #warning No C99 library functions [-Wcpp]

有人知道如何在cygwin中解决这个问题吗?

4

1 回答 1

2

你可能想要这个:

 if(typeline == "E3T" && i == 5)
                            ^^ equality check

if(typeline == "E3T" && i = 5)抱怨左值

因为typeline == "E3T" && i不能指定为 5

然而

if(typeline == "E3T" && (i = 5))编译,但这不是你需要的

于 2013-09-18T01:46:19.363 回答