Почему успех программы зависит от того, объявлен ли перегруженный конструктор? - PullRequest
0 голосов
/ 07 декабря 2011

Я пишу программу на С ++.Это класс ученика:

#include "Student.hpp"
#include "Home.hpp"
#include <string>

using namespace std;
/*
 * This is default constructor
 */
Student::Student(){

}
/*
 * This is copy constructor
 */
Student::Student(const Student& orig) {
   copy(orig);// invokes deep copy method
}
/*
 * This is a destructor
 */
Student::~Student() {
}

/*
 * This is operator = overloading method.
 * 
 * @param student. It is a reference to student class
 * @return Returns pointer to current class
 */
Student & Student::operator=(Student & student){
   if(this != &student){ // checks if they are referencing the same class.          
      copy(student);
   }
   return *this;
}

/*
 * This is setter
 * 
 * @param x The random integer number
 */
void Student::setValue(int x){
   data = x;
}

/*
 * The getter.
 * 
 * @return Returns integer digit
 */
int Student::getValue(){
   return data; 
}

/*
 * The copy method. It makes a deep copy of a current class.
 * 
 * @param orig. It contains a reference to student class
 */
void Student::copy(const Student &orig){
    if(this != &orig){
    // makes a copy of data member
       data = orig.data;      

    }
}

Это фрагмент основного метода :

Student * array = new Student[objectSize];
    cout << "\nOriginal array of Student type: "; 
    int i = 0; 
    for(int x = objectSize; x > 0; x--){
      array[i].setValue(x);

      cout << array[i] << " "; // prints the contents of original Student type array
       i++;
    }

    defaultObject.addition(array, objectSize); // invokes function to sort array of Student type

Это заголовочный файл:

#include <string>

using namespace std;

#ifndef STUDENT_HPP
#define STUDENT_HPP

class Student {

    friend ostream& operator<< (ostream& os, const Student& study){// overloads << operator for Student class      
        os << study.data; // the data you output       
    return os; 
   }
public:  
    Student(); // default constructor
   // Student(int data);// overloaded constructor
    Student(const Student& orig);// copy constructor
    virtual ~Student();// destructor
    Student & operator=(Student& student); // overloads = operator
    void setValue(int x);// setter
    int getValue();// getter
    void copy(const Student &orig);// copy method


    friend bool operator> (Student &first, Student &second){// overloads greater operator
       return first.data > second.data;
   }    

private:
    int data;// data member for storing Student's class contents
};

#endif  /* STUDENT_HPP */

Проблема в том, что, когда я комментирую эту строку Student(int data); в заголовочном файле, программа выдает эту ошибку:

Student.hpp: In function `std::ostream& operator<<(std::ostream&, const Student&)':
In file included from Student.cpp:12:
Student.hpp:21: error: no match for 'operator<<' in 'os << study->Student::data'
Student.hpp:20: note: candidates are: std::ostream& operator<<(std::ostream&, const Student&)
make[2]: *** [build/Debug/Cygwin-Windows/Student.o] Error 1
make[1]: *** [.build-conf] Error 2
make: *** [.build-impl] Error 2

BUILD FAILED (exit value 2, total time: 4s)

Фактически, перегруженный конструктор в файле Student.cpp не определен, но если там есть объявлениепрограмма на NetBeans работает, хотя на терминале Linux выдает указанную ошибку.

1 Ответ

2 голосов
/ 07 декабря 2011
error: no match for 'operator<<' in 'os << study->Student::data'
note: candidates are: std::ostream& operator<<(std::ostream&, const Student&)

Вы просите его написать int в поток.Обратите внимание на очень короткий список возможных кандидатов, компилятор говорит, что знает только, как записать Student в поток.Раньше это было возможно до того, как вы прокомментировали конструктор Student (int).Этот конструктор можно использовать для преобразования int в Student.Это приведет к очень плохому концу во время выполнения, когда стек разрушится, но это не относится к делу.

Вам не хватает #include для заголовка, который объявляет оператор <<, который позволяет писать intв поток.На самом деле не уверен, что это может быть, я не люблю потоки.Не проблема, у домашних заданий не должно быть реальных ответов:) </p>

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...