Adding objects with a loop

Hi! I'm coding a program where I have to classes: Libro and ColeccionLibros.
I want the class Libro to create the object and then the class ColeccionLibros to store the Libro's objects.

The problem is that I need to use a loop to create the diferent Libro's objects, but I can't figure a way to do it.

I know that my explanation isn't the best so here I is an example of what I'm trying (look at the main func, line 156):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#include <iostream>
#include <sstream>
using namespace std;
class Libro{
private: 
	int clasDew;
	string titulo;
	string autor;
	string editorial;
	int anio;
	int codigoISBN;
	string pais;
public:
	Libro(){
		clasDew=0;
		titulo="";
		autor="";
		editorial="";
		anio=0;
		codigoISBN=0;
		pais="";		
	}
	Libro(int laClasDew, string elTitulo, string elAutor, string laEditorial, int elAnio, int elCodigoISBN, string elPais){
		clasDew=laClasDew;
		titulo=elTitulo;
		autor=elAutor;
		editorial=laEditorial;
		anio=elAnio;
		codigoISBN=elCodigoISBN;
		pais=elPais;
	}
	string toString(){
		stringstream s;
		s<<"Género del libro: "<<clasDew<<endl;//Crear función que traduzca clasDew a palabras
		s<<"Título: "<<titulo<<endl;
		s<<"Autor: "<<autor<<endl;
		s<<"Editorial: "<<editorial<<endl;
		s<<"Año de publicación: "<<anio<<endl;
		s<<"Código ISBN: "<<codigoISBN<<endl;
		s<<"País de publicación: "<<pais<<endl;
		
		return s.str();
	}
	
	int getClasDew(){
		return clasDew;
	}
	string getTitulo(){
		return titulo;
	}
	string getAutor(){
		return autor;
	}
	string getEditorial(){
		return editorial;
	}
	int getAnio(){
		return anio;
	}
	int  getCodigoISBN(){
		return codigoISBN;
	}
	string getPais(){
		return pais;
	}
	
	void setClasDew(int laClasDew){
		clasDew=laClasDew;
	}
	void setTitulo(string elTitulo){
		titulo=elTitulo;
	}
	void setAutor(string elAutor){
		autor=elAutor;
	}
	void setEditorial(string laEditorial){
		editorial=laEditorial;
	}
	void setAnnio(int elAnio){
		anio=elAnio;
	}
	void setCodigoISBN(int elCodigoISBN){
		codigoISBN=elCodigoISBN;
	}
	void setPais(string elPais){
		pais=elPais;
	}
};
class ColeccionLibros{
private:
	int cantidad;
	int size;
	Libro librosGuardados[10];
public:
	ColeccionLibros(){
		cantidad=0;
		size=10;
		for(int i;i<size;i++){
			librosGuardados[i]=librosGuardados[10];
		}
	}
	ColeccionLibros(int n){
		cantidad=0;
		size=n;
		for(int i;i<size;i++){
			librosGuardados[i]=librosGuardados[10];
		}
	}
	~ColeccionLibros(){
	}
	void agregarLibro(Libro elem){
		if (cantidad<=size){
			librosGuardados[cantidad]=elem;
			cantidad++;
		}
	}
	string toString(){
		stringstream s;
		for (int i=0;i<cantidad;i++){
			s<<librosGuardados[i].toString()<<endl;
		}
		
		return s.str();
	}
		
	Libro getLibrosGuardados(int i){
		return librosGuardados[i];
	}
	void setLibrosGuardados(int i, Libro n){
		librosGuardados[i]=n;
	}
};
  int main(int argc, char *argv[]) {
	int clasDew;
	string titulo;
	string autor;
	string editorial;
	int anio;
	int codigoISBN;
	string pais;
	
	int i=0;
	
	string nombreLibro="libro"; //They'll be cin, using those values just to test
	clasDew=123;
	titulo="Hola Que tal";
	autor="Keylor Navas";
	editorial="San PAblo";
	anio=1990;
	codigoISBN=123123;
	pais="Costa de Marfil";
	
	ColeccionLibros librosAA;

	for(i=0;i<10;i++){
	Libro* nombreLibro=new Libro[i]( clasDew,titulo, autor, editorial, anio, codigoISBN, pais);
	cout<<nombreLibro[i].toString();
	
	
	librosAA.agregarLibro(nombreLibro[i]);
	delete[] nombreLibro;
	}
	cout<<librosAA.toString();
	return 0;
}


As you see, it won't compile correctly because of a problem inside the for loop, but I can't find a solution.

Thanks!
Last edited on
This seems to work.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#include <iostream>
#include <sstream>
using namespace std;
class Libro{
private:
	int clasDew;
	string titulo;
	string autor;
	string editorial;
	int anio;
	int codigoISBN;
	string pais;
public:
	Libro(){
		clasDew=0;
		titulo="";
		autor="";
		editorial="";
		anio=0;
		codigoISBN=0;
		pais="";
	}
	Libro(int laClasDew, string elTitulo, string elAutor, string laEditorial,
		  int elAnio, int elCodigoISBN, string elPais){
		clasDew=laClasDew;
		titulo=elTitulo;
		autor=elAutor;
		editorial=laEditorial;
		anio=elAnio;
		codigoISBN=elCodigoISBN;
		pais=elPais;
	}
	string toString(){
		stringstream s;
		s<<"Género del libro: "<<clasDew<<endl;//Crear función que traduzca clasDew a palabras
		s<<"Título: "<<titulo<<endl;
		s<<"Autor: "<<autor<<endl;
		s<<"Editorial: "<<editorial<<endl;
		s<<"Año de publicación: "<<anio<<endl;
		s<<"Código ISBN: "<<codigoISBN<<endl;
		s<<"País de publicación: "<<pais<<endl;

		return s.str();
	}

	int getClasDew(){
		return clasDew;
	}
	string getTitulo(){
		return titulo;
	}
	string getAutor(){
		return autor;
	}
	string getEditorial(){
		return editorial;
	}
	int getAnio(){
		return anio;
	}
	int  getCodigoISBN(){
		return codigoISBN;
	}
	string getPais(){
		return pais;
	}

	void setClasDew(int laClasDew){
		clasDew=laClasDew;
	}
	void setTitulo(string elTitulo){
		titulo=elTitulo;
	}
	void setAutor(string elAutor){
		autor=elAutor;
	}
	void setEditorial(string laEditorial){
		editorial=laEditorial;
	}
	void setAnnio(int elAnio){
		anio=elAnio;
	}
	void setCodigoISBN(int elCodigoISBN){
		codigoISBN=elCodigoISBN;
	}
	void setPais(string elPais){
		pais=elPais;
	}
};
class ColeccionLibros{
private:
	int cantidad;
	int size;
	Libro *librosGuardados; //!! you don't know how many at compile time
public:
	ColeccionLibros(){
		cantidad=0;
		size=10;
		librosGuardados = new Libro[size];  //!! make the run-time array
	}
	ColeccionLibros(int n){
		cantidad=0;
		size=n;
		librosGuardados = new Libro[size];
	}
	~ColeccionLibros(){
	    delete [] librosGuardados;  //!! and we're done
	}
	void agregarLibro(Libro elem){
		if (cantidad<=size){
			librosGuardados[cantidad]=elem;
			cantidad++;
		}
	}
	string toString(){
		stringstream s;
		for (int i=0;i<cantidad;i++){
			s<<librosGuardados[i].toString()<<endl;
		}

		return s.str();
	}

	Libro getLibrosGuardados(int i){
		return librosGuardados[i];
	}
	void setLibrosGuardados(int i, Libro n){
		librosGuardados[i]=n;
	}
};
  int main(int argc, char *argv[]) {
	int clasDew;
	string titulo;
	string autor;
	string editorial;
	int anio;
	int codigoISBN;
	string pais;

	int i=0;

	string nombreLibro="libro"; //They'll be cin, using those values just to test
	clasDew=123;
	titulo="Hola Que tal";
	autor="Keylor Navas";
	editorial="San PAblo";
	anio=1990;
	codigoISBN=123123;
	pais="Costa de Marfil";

	ColeccionLibros librosAA;

	for(i=0;i<10;i++){
		Libro lib(clasDew,titulo, autor, editorial, anio, codigoISBN, pais);
		librosAA.agregarLibro(lib);
	}
	cout<<librosAA.toString()<<endl;
	return 0;
}

Topic archived. No new replies allowed.