I can not understand why I'm giving this error while compiling my code:
Include file from test_GenericArray.cpp: 2: 0: GenericArray.h: In function 'std :: ostream & operator < < (std :: ostream & const GenericArray &: ': GenericArray.h: 43: 7: error:' int GenericArray :: length is private int length;
I have 3 files, which are below:
GenericArray.h:
#include <iostream>
const int MAX_ITEMS = 6;
class GenericArray {
public:
// Constructor
GenericArray(); // Inicializa o nosso objeto com uma lista vazia.
// Observers
bool isFull() const;
int getLength() const;
// Recebe um ponteiro para um elemento do tipo int. Esse
// elemento int que recebemos por parametro tem uma
// chave. Usamos essa chave para buscar um elemento em nossa lista e
// retornar esse elemento, caso ele exista.
// Se o elemento nao estiver na lista, entao nao precisa alterar o
// parametro item, basta avisar na variavel found que o elemento nao
// foi achado.
void retrieveItem(int& item, bool& found);
// Insere o elemento na lista em uma posicao arbitraria no caso do
// Unsorted e na posicao correta no caso do Sorted.
void insertItem(int item);
// Remove uma ocorrencia do elemento na lista.
void deleteItem(int item); // Nos nao sabemos qual a chave da
// classe int, entao precisamos
// de um objeto para saber se os
// elementos listados sao iguais ao
// nosso.
//friend std::ostream& operator<<(std::ostream& os, const GenericArray& st);
private:
int length;
int info[MAX_ITEMS];
};
test_Generic_Array.cpp (file that displays the data on the screen):
#include <iostream>
#include "GenericArray.h"
using namespace std;
ostream& operator<<(ostream& os, const GenericArray& array){
for (int i = 0; i < array.length; i++) {
os << array.info[i];
}
os << endl;
return os;
}
int main(){
GenericArray unsorted;
int elements[4] = {5, 7, 6, 9};
for (int i = 0; i <= 3; i++) {
int item(elements[i]);
unsorted.insertItem(item);
}
cout << unsorted;
int item(7);
bool found = false;
unsorted.retrieveItem(item, found);
cout << item << endl;
unsorted.deleteItem(item);
cout << unsorted;
cout << "Fim" << endl;
}
GenericArray.cpp:
#include "GenericArray.h"
GenericArray::GenericArray(){
length = 0;
}
bool GenericArray::isFull() const { //8:22
return(length == MAX_ITEMS);
}
int GenericArray::getLength() const {
return length;
}
void GenericArray::retrieveItem(int& item, bool& found){
int location = 0;
found = false;
while((location < length) && !found ){
if(item == info[location]){
found = true;
item = info[location];
}
location++;
}
}
void GenericArray::insertItem(int item){
info[length] = item;
length++;
}
void GenericArray::deleteItem(int item){
int location = 0;
while(item != info[location]){
location++;
}
info[location] = info[length-1];
length--;
}