0

我是一名 C++ 初学者,我正在使用 jGRASP 并安装了 MinGW32,因为我们将我们的作业远程转换为 Linux 机器,因此这有助于确保它通过在 Windows 或其他东西中模拟 Linux 环境来正常工作。对于 MinGW32,我安装了“基本包”,然后手动选择了 C++ 编译器选项。在 jGRASP 中,我settings>>PATH/CLASSPATH>>workspace添加了一个新的 PATH 目录,C:\MinGW\mingw32\bin以便它知道 g++ 编译器在哪里。

我在 jGRASP 中编译时收到这些疯狂的错误消息,我无法理解。由于iostream,我认为这与我的标题有关。

#include <string.h>
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;

以下是编译器错误消息:

ios:42:0,
                 from c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\ostream:38,
                 from c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\iostream:39,
                 from lab1.cpp:6:
c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\bits\ios_base.h: In copy constructor 'std::basic_ios<char>::basic_ios(const std::basic_ios<char>&)':
ios_base.h:786:5: error: 'std::ios_base::ios_base(const std::ios_base&)' is private
     ios_base(const ios_base&);
     ^
ios:44:0,
                 from c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\ostream:38,
                 from c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\iostream:39,
                 from lab1.cpp:6:
basic_ios.h:66:11: error: within this context
     class basic_ios : public ios_base
           ^
In file included from lab1.cpp:8:0:
c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\fstream: In copy constructor 'std::basic_ifstream<char>::basic_ifstream(const std::basic_ifstream<char>&)':
fstream:427:11: note: synthesized method 'std::basic_ios<char>::basic_ios(const std::basic_ios<char>&)' first required here 
     class basic_ifstream : public basic_istream<_CharT, _Traits>
           ^
ios:43:0,
                 from c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\ostream:38,
                 from c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\iostream:39,
                 from lab1.cpp:6:
c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\streambuf: In copy constructor 'std::basic_filebuf<char>::basic_filebuf(const std::basic_filebuf<char>&)':
streambuf:802:7: error: 'std::basic_streambuf<_CharT, _Traits>::basic_streambuf(const std::basic_streambuf<_CharT, _Traits>&) [with _CharT = char; _Traits = std::char_traits<char>]' is private
       basic_streambuf(const basic_streambuf& __sb)
       ^
In file included from lab1.cpp:8:0:
fstream:72:11: error: within this context
     class basic_filebuf : public basic_streambuf<_CharT, _Traits>
           ^
c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\fstream: In copy constructor 'std::basic_ifstream<char>::basic_ifstream(const std::basic_ifstream<char>&)':
fstream:427:11: note: synthesized method 'std::basic_filebuf<char>::basic_filebuf(const std::basic_filebuf<char>&)' first required here 
     class basic_ifstream : public basic_istream<_CharT, _Traits>

到目前为止,这是我的代码:

// ----------------------------------------------------------------------------
// You write meaningful doxygen comments and assumptions

#include <string.h>
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;

int const MAXSIZE = 100;            // maximum number of records in total
int const MAXLENGTH = 31;           // maximum string length 
int const MAXGRADE = 100;           // highest possible grade
int const LOWGRADE = 0;             // lowest possible grade
int const GROUP = 10;               // group amount
int const HISTOGRAMSIZE = (MAXGRADE-LOWGRADE)/GROUP + 1;    // grouped by GROUP

struct StudentType  {               // information of one student
   int grade;                       // the grade of the student
   char last[MAXLENGTH];            // last name (MAXLENGTH-1 at most)
   char first[MAXLENGTH];           // first name (MAXLENGTH-1 at most)
};

// prototypes go here
bool sortInput(ifstream, StudentType, int);
void displayList(StudentType, int);
/*setHistrogram();
displayHistogram();
findAverage();*/

//------------------------------- main ----------------------------------------
int main()  {
   StudentType students[MAXSIZE];   // list of MAXSIZE number of students
   int size = 0;                    // total number of students
   int histogram[HISTOGRAMSIZE];    // grades grouped by GROUP
   int average = 0;                 // average exam score, truncated

   // creates file object and opens the data file
   ifstream infile("data1.txt");
   if (!infile)  { 
      cout << "File could not be opened." << endl; 
      return 1;  
   }

   // read and sort input by last then first name
   bool successfulRead = sortInput(infile, students, size);              

   // display list, histogram, and class average 
   if (successfulRead)  {
      displayList(students[], size);
     // setHistogram(... you figure parameters ...);
     // displayHistogram(... you figure parameters ...);
     // average = findAverage(... you figure parameters ...);
      cout << "Average grade: " << average << endl << endl;
   }
   return 0;
}

bool sortInput(ifstream infile, StudentType students[], int size)
{
   while(infile)
   {
      StudentType temp;
      infile >> temp.last >> temp.first >> temp.grade;

      //for(int i = MAXSIZE-1; i > MAXSIZE-1-size; i--)
      for(int i = size; i > 0; i--)
      {
         if(strcmp(temp.last, students[i].last) < 0)
         {
            //copy current name and grade down
            //strcopy(students[i+1].last, students[i].last);
            students[i+1] = students[i];
         }
         else if(strcmp(temp.last, students[i].last) == 0 && strcmp(temp.first, students[i].first) < 0))
         {
            //copy/assign current name and grade down
            students[i+1] = students[i];
         }
         else
         {
            //found right place, break out of loop
            break;
         }
      }

      //now that you've made room, insert (copy) new name into correct sorted position
      students[i] = temp;
   }

   return true;
}

void displayList(StudentType students[], int size)
{
   cout << "List of names sorted:" << end1;

   for(int i = 0; i < size; i++)
   {
      cout << " " << student[i].grade << " " << students[].last << " " << students[i].first << end1;
   }
}

// ----------------------------------------------------------------------------
// functions with meaningful doxygen comments and assumptions go here
4

1 回答 1

1

我自己遇到了这个。问题是它sortInput采用ifstream值,而不是引用。 ifstreams不喜欢被复制。只需将声明更改为:

bool sortInput(ifstream&, StudentType, int);

注意&

于 2013-12-16T18:44:39.120 回答