С Новым годом! Форум программистов, компьютерный форум, киберфорум
С++ для начинающих
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.57/7: Рейтинг темы: голосов - 7, средняя оценка - 4.57
0 / 0 / 0
Регистрация: 23.03.2013
Сообщений: 16
1

Наследование и перегрузка операторов

20.04.2013, 00:53. Показов 1371. Ответов 9
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Помогите, пожалуйста! Ткните носом в ошибки.. не судите строго - первая прога в С++, как и в объектно-ориент программировании:

Ludzi.h


C++
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
#ifndef KLS
#define KLS
 
#include <iostream>
#include <sstream>
#include <cstring>
 
 
 using namespace std;
 
 class Ludzi
 {
 
public:
 
 char imie;
 char nazwisko;
 int wiek;
 
Ludzi() {}
 Ludzi(char, char, int);
   ~Ludzi() {}
 
 
void przedstaw_sie_ty();
void przedstaw_sie_on();
virtual void podaj_dane();
virtual void powiedz_dane();
 
friend ostream& operator<< (ostream&,Ludzi const&);
friend istream& operator>> (istream&,Ludzi&);
 
 };
 
class Wykladowca : public  Ludzi
{
    public:
 
    char przedmiot;
    char tematwyklada;
 
 
      Wykladowca() {}
      Wykladowca(char, char, char, char, int);
      ~Wykladowca() {}
 
void podaj_dane();
 void powiedz_dane();
 
friend ostream& operator<< (ostream&,Wykladowca const&);
friend istream& operator>> (istream&,Wykladowca&);
Wykladowca operator+ (Wykladowca const&);
Wykladowca operator- (Wykladowca const&);
 
};
 
class Student : public Ludzi
{
    public:
 
    char kierunek;
    int rok;
    int moc;
    double ocena;
 
 
     Student() {}
    Student(char, char, char, int, int, int, double);
    ~Student() {}
 
    void podaj_dane();
    void powiedz_dane();
    int pracuj(int);
 
friend ostream& operator<< (ostream&,Student const&);
friend istream& operator>> (istream&,Student&);
Student operator+ (Student const&);
Student operator- (Student const&);
 
};
 
 class Laborant : public Ludzi
 {
     public:
 
     int moc;
     char tematprojektu;
 
 
     Laborant() {}
     Laborant(char, char, char, int, int);
     ~Laborant() {}
 
     int pracuj(int);
     void podaj_dane();
     void powiedz_dane();
 
friend ostream& operator<< (ostream&,Laborant const&);
friend istream& operator>> (istream&,Laborant&);
Laborant operator+ (Laborant const&);
Laborant operator- (Laborant const&);
 
 };
 
#endif
 
Wyklady.h
 
#ifndef KL
#define KL
 
#include <iostream>
#include <sstream>
#include <cstring>
 
 
 
 using namespace std;
 
class Wyklady
{
   public:
 
    char nazwa;
    char temat;
    double czastrwania;
    int sala;
 
 
virtual void powiedz_dane_wyklada();
virtual void pokaz_dane_wyklada();
 
       Wyklady() {}
        Wyklady(char, char, double, int);
    ~Wyklady();
 
 
};
 
class WObowiazkowe : public Wyklady
{
    public:
 
int ileosob;
 
    WObowiazkowe() {}
    WObowiazkowe(char, char, double, int, int);
    ~WObowiazkowe();
 
void powiedz_dane_wyklada();
 void pokaz_dane_wyklada();
 
 friend ostream& operator<< (ostream&,WObowiazkowe const&);
 friend istream& operator>> (istream&,WObowiazkowe&);
 
};
 
class WObieralne : public Wyklady
{
    public:
 
    char jaki;
    int ileosb;
 
    WObieralne() {}
    WObieralne(char, char, char, double, int, int);
    ~WObieralne();
 
void powiedz_dane_wyklada();
void pokaz_dane_wyklada();
 
friend ostream& operator<< (ostream&,WObieralne const&);
 friend istream& operator>> (istream&,WObieralne&);
 
 
};
 
#endif
 
 
Ludzi.cpp
 
 
#include <iostream>
#include <sstream>
#include <cstring>
#include "ludzi.h"
 
using namespace std;
 
 
Ludzi::Ludzi(char a, char b, int c) //Ludzi konstruktor
{
 a=imie;
 b=nazwisko;
 c=wiek;
 };
 
 
ostream& operator<< (ostream &wyjscie, Ludzi const& l)
{
   wyjscie << "Imie: " <<l.imie<< " Nazwisko: " <<l.nazwisko<<endl;
   return wyjscie;
}
 
 
 istream& operator>> (istream &wejscie, Ludzi& l)
 {
   wejscie >> l.imie>> l.nazwisko;
   return wejscie;
}
 
 
Wykladowca::Wykladowca(char a, char b, char s, char t, int c):Ludzi(a,b,c)  // Wykladowcy konstruktor
{
s=przedmiot;
t=tematwyklada;
 };
 
 Wykladowca Wykladowca:: operator+ (Wykladowca const& w)
{
   Wykladowca grp(imie + w.imie, nazwisko + w.nazwisko, przedmiot + w.przedmiot, tematwyklada + w.tematwyklada, wiek + w.wiek);
   return grp;
}
 
Wykladowca Wykladowca:: operator- (Wykladowca const& w)
{
   Wykladowca wgrp(imie - w.imie, nazwisko - w.nazwisko, przedmiot - w.przedmiot, tematwyklada - w.tematwyklada, wiek - w.wiek);
   return wgrp;
}
 
 
ostream& operator<< (ostream &wyjscie, Wykladowca const& w)
{
   wyjscie << "Imie: " <<w.imie<< " Nazwisko: " <<w.nazwisko<<"Przedmiot: "<<w.przedmiot<<"Temat Wyklada: "<<w.tematwyklada<<"Wiek: "<<w.wiek<<endl;
   return wyjscie;
}
 
 istream& operator>> (istream &wejscie, Wykladowca& w)
{
   wejscie >>w.imie>>w.nazwisko>>w.przedmiot>>w.tematwyklada>>w.wiek;
   return wejscie;
}
 
Student::Student(char a, char b, char k, int c, int r, int m, double o):Ludzi(a,b,c)  // Studenci konstruktor
{
 k=kierunek;
 r=rok;
 m=moc;
 o=ocena;
 };
 
 Student Student:: operator+ (Student const& st)
{
   Student grp(imie + st.imie, nazwisko + st.nazwisko, kierunek + st.kierunek, wiek + st.wiek, rok + st.rok, moc + st.moc, ocena + st.ocena);
   return grp;
}
 
 Student Student:: operator- (Student const& st)
{
   Student wgrp(imie - st.imie, nazwisko - st.nazwisko, kierunek - st.kierunek, wiek - st.wiek, rok - st.rok, moc - st.moc, ocena - st.ocena);
   return wgrp;
}
 
 
ostream& operator<< (ostream &wyjscie, Student const& st)
{
   wyjscie << "Imie: " <<st.imie<< " Nazwisko: " <<st.nazwisko<<"Wiek: "<<st.wiek<<"Kierunek: "<<st.kierunek<< "Rok studjuw: "<< st.rok<< "Jaka srednia ocena: "<< st.ocena<<"Z jaką mocą pracuje: "<<st.moc<<endl;
   return wyjscie;
}
 
 istream& operator>> (istream &wejscie, Student& st)
{
   wejscie >>st.imie>>st.nazwisko>>st.wiek>> st.kierunek>> st.rok>> st.ocena>>st.moc;
   return wejscie;
}
 
  Laborant::Laborant(char a, char b, char p, int c, int w):Ludzi(a,b,c)  // Laboranci konstruktor
  {
      w=moc;
      p=tematprojektu;
  }
 
Laborant Laborant:: operator+ (Laborant const& lb)
{
   Laborant grp(imie + lb.imie, nazwisko + lb.nazwisko, tematprojektu + lb.tematprojektu, wiek + lb.wiek, moc + lb.moc);
   return grp;
}
 
Laborant Laborant:: operator- (Laborant const& lb)
{
   Laborant wgrp(imie - lb.imie, nazwisko - lb.nazwisko, tematprojektu - lb.tematprojektu, wiek - lb.wiek, moc - lb.moc);
   return wgrp;
}
 
 
 ostream& operator<< (ostream &wyjscie, Laborant const& lb)
{
   wyjscie << "Imie: " <<lb.imie<< " Nazwisko: " <<lb.nazwisko<<"Wiek: "<<lb.wiek<<"Tematprojektu: "<<lb.tematprojektu<<"Z jaką mocą pracuje: "<<lb.moc<<endl;
   return wyjscie;
}
 
istream& operator>> (istream &wejscie, Laborant& lb)
{
   wejscie >>lb.imie>>lb.nazwisko>>lb.wiek>>lb.tematprojektu>>lb.moc;
   return wejscie;
}
 
void Ludzi:: przedstaw_sie_ty()    //Ludzi
{
    cout<<"Przedstaw sie: \n"<<endl;
 
}
 
void Ludzi:: przedstaw_sie_on()
{
    cout<<"Przedstaw sie: \n"<<endl;
}
 
 
 
void Wykladowca:: podaj_dane() // Wykladowcy
{
    cout<<"Podaj dane Wykladowcy: \n"<<"imie, nazwisko, wiek, przedmiot, tematwykladu"<<endl;
 
}
 
void Wykladowca:: powiedz_dane()
{
    cout<<"Dane Wykladowcy: "<<endl;
}
 
void Student:: podaj_dane()   // Student
{
    cout<<"Podaj dane Studenta: \n"<<"imie, nazwisko, wiek, kierunek, rok, moc, ocena: "<<endl;
 
}
 
void Student:: powiedz_dane()
{
    cout<<"Dane Studenta: "<<endl;
 
}
 
int Student:: pracuj(int czas)
{
    return moc*czas;
}
 
 
void Laborant:: podaj_dane() //Laboranci
{
 
    cout<<"Podaj dane Laboranta: \n"<<"imie, nazwisko, wiek, tematprojektu"<<endl;
 
 
}
 
void Laborant:: powiedz_dane()
{
    cout<<"Dane laboranta: "<<endl;
}
 
int Laborant:: pracuj(int czas)
{
    return moc*czas;
}
 
 
Wyklady.cpp
 
#include <iostream>
#include <sstream>
#include <cstring>
#include "Wyklady.h"
 
using namespace std;
 
Wyklady::Wyklady(char n, char f, double x, int z)  // Wyklady konstruktory
{
    n=nazwa;
    f=temat;
    x=czastrwania;
    z=sala;
}
 
WObowiazkowe::WObowiazkowe(char n, char f, double x, int z, int i):Wyklady(n,f,x,z)
{
    i=ileosob;
}
 
WObieralne::WObieralne(char n, char f, char j, double x, int z, int u):Wyklady(n,f,x,z)
{
    u=ileosb;
    j=jaki;
}
 
 
ostream& operator<< (ostream &wyjscie, WObowiazkowe const& b)   // Operatory
{
   wyjscie <<"Nazwa Przedmiotu: " <<b.nazwa<< " Temat Wykladu: " <<b.temat<<"Czas Trwania: "<<b.czastrwania<< "W jakoj Sale: "<<b.sala<<"Ile osob chodzi: "<<b.ileosob<<endl;
   return wyjscie;
}
 
 
 istream& operator>> (istream &wejscie, WObowiazkowe& b)
{
   wejscie >>b.nazwa>>b.temat>>b.czastrwania>>b.sala>> b.ileosob;
   return wejscie;
}
 
 
 
 
ostream& operator<< (ostream &wyjscie, WObieralne const& r)
{
   wyjscie <<"Nazwa Przedmiotu: " <<r.nazwa<< " Temat Wykladu: " <<r.temat<<"Czas Trwania: "<<r.czastrwania<< "W jakoj Sale: "<<r.sala<<"Ile osob chodzi: "<<r.ileosb<<"Techniczny czy nie: "<<r.jaki<<endl;
   return wyjscie;
}
 
 
 istream& operator>> (istream &wejscie, WObieralne& r)
{
   wejscie >> r.nazwa>>r.temat>>r.czastrwania>>r.sala>>r.ileosb>>r.jaki;
   return wejscie;
}
 
void Wyklady:: powiedz_dane_wyklada()
{
    cout<<"Podaj dane Wykladow: \n"<<"nazwa, temat, czas trwania, sala, ileosob"<<endl;
}
 
void Wyklady:: pokaz_dane_wyklada()
{
    cout<<"Pokaz dane Wyklada: \n"<<endl;
 
}
 
void WObowiazkowe:: powiedz_dane_wyklada()
 {
     cout<<"Podaj dane Wykladow Obowiazkowych: \n"<<"nazwa, temat, czas trwania, sala, ileosob"<<endl;
 }
 
void WObowiazkowe:: pokaz_dane_wyklada()
{
    cout<<"Pokaz dane Wyk Obowiazkowego: \n"<<endl;
 
}
 
void WObieralne:: powiedz_dane_wyklada()
{
   cout<<"Podaj dane Wykladow Obieralnych: \n"<<"nazwa, temat, czas trwania, sala, ileosob, jaki"<<endl;
}
 
void WObieralne:: pokaz_dane_wyklada()
{
    cout<<"Pokaz dane Wyk Obieralnego: \n"<<endl;
}
 
 
main.cpp
 
#include <iostream>
#include <sstream>
#include <cstring>
 
#include "Wyklady.h"
#include "ludzi.h"
 
using namespace std;
 
int main()
{
 
 
    Ludzi l, l1;
    Student st1, st2;
    Laborant lb1;
    Wykladowca w1;
 
    Wyklady k1;
    WObieralne r1, r2;
    WObowiazkowe b1;
 
 
 
l1.przedstaw_sie_ty();
cin>> l1;
st1.podaj_dane();
cin>>st1;
st2.podaj_dane();
cin>>st2;
lb1.pracuj(7);
st1.powiedz_dane();
cin>>st1;
 
 cout<<w1.tematwyklada<<endl;
 cout<<st1.ocena<<endl;
 cout<<st1.kierunek<<endl;
 cout<<st2.rok<<endl;
 cout<<st1.pracuj(10)<<endl;
 cout<<lb1.tematprojektu<<endl;
 cout<<lb1.pracuj(9)<<endl;
 
 
 
cout<<"Zaprzyjazni Studentow: "<<st1+st2<<endl;
cout<<"Rozdziel studentow: "<<st1+st2-st2<<endl;
 
 
r1.powiedz_dane_wyklada();
cin>>r1;
r2.powiedz_dane_wyklada();
cin>>r2;
 
b1.powiedz_dane_wyklada();
cin>>b1;
 
r2.pokaz_dane_wyklada();
cout<<r2<<endl;
 
 
cout<<b1.ileosob<<endl;
cout<<r1.jaki<<endl;
 
 
 
return 0;
 
}
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
20.04.2013, 00:53
Ответы с готовыми решениями:

Наследование и перегрузка операторов.
У меня есть базовый класс class myfloat { protected: int c; int z; void reduce();...

ООП в С++ (наследование, инкапсуляция, полиморфизм, перегрузка операторов): что читать?
Нужно освежить, подзабылось. Были у меня институцкие методички доцента Шеховцова. Хороша вещь, но...

Нужен код, в котором есть: Классы, Наследование, Виртуальная функция, Перегрузка операторов
Скоро сдавать лабораторные работы, помогите пожалуйста)) Если можете, пришлите код, в котором есть:...

Множественное наследование, Перегрузка функций, Перегрузка операторов, Использование дружественных функций и классов, Использование шаблонов классов
Здравствуйте!!! Я бы хотел попросить помоч решить...ну или скинуть примеры таких задач, если вдруг...

9
503 / 352 / 94
Регистрация: 22.03.2011
Сообщений: 1,112
20.04.2013, 00:58 2
Sorry but programming language is English not Poland.

Перепишите. Поможем.
0
0 / 0 / 0
Регистрация: 23.03.2013
Сообщений: 16
20.04.2013, 02:11  [ТС] 3
Вот:

C++
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
Ludi.h
 
 
#ifndef KLS
#define KLS
 
#include <iostream>
#include <sstream>
#include <cstring>
 
 
 using namespace std;
 
 class Ludzi
 {
 
public:
 
 char name;
 char surname;
 int age;
 
Ludi() {}
 Ludi(char, char, int);
   ~Ludi() {}
 
 
void introduce();
virtual void giveInf();
virtual void showInf();
 
friend ostream& operator<< (ostream&,Ludi const&);
friend istream& operator>> (istream&,Ludi&);
 
 };
 
class Lektor : public  Ludi
{
    public:
 
    char predmiet;
    char tematlekcji;
 
 
      Wykladowca() {}
      Wykladowca(char, char, char, char, int);
      ~Wykladowca() {}
 
void giveInf();
 void showInf();
 
friend ostream& operator<< (ostream&,Lektor const&);
friend istream& operator>> (istream&,Lektor&);
Wykladowca operator+ (Lektor const&);
Wykladowca operator- (Lektor const&);
 
};
 
class Student : public Ludi
{
    public:
 
    char potok;
    int year;
    int power;
    double mark;
 
 
     Student() {}
    Student(char, char, char, int, int, int, double);
    ~Student() {}
 
  void giveInf();
 void showInf();
    int work(int);
 
friend ostream& operator<< (ostream&,Student const&);
friend istream& operator>> (istream&,Student&);
Student operator+ (Student const&);
Student operator- (Student const&);
 
};
 
 class Laborant : public Ludi
 {
     public:
 
     int power;
     char tematprojekta;
 
 
     Laborant() {}
     Laborant(char, char, char, int, int);
     ~Laborant() {}
 
     int work(int);
     void giveInf();
 void showInf();
 
friend ostream& operator<< (ostream&,Laborant const&);
friend istream& operator>> (istream&,Laborant&);
Laborant operator+ (Laborant const&);
Laborant operator- (Laborant const&);
 
 };
 
#endif
 
Lekcji.h
 
#ifndef KL
#define KL
 
#include <iostream>
#include <sstream>
#include <cstring>
 
 
 using namespace std;
 
class Lekcji
{
   public:
 
    char nazwa;
    char temat;
    double time;
    int room;
 
 
virtual void giveInfLek();
virtual void showInfLek();
 
       Lekcji () {}
         Lekcji(char, char, double, int);
    ~ Lekcji();
 
 
};
 
class LecjiObiazat : public Lekcji
{
    public:
 
int skolkludz;
 
   LecjiObiazat() {}
    LecjiObiazat(char, char, double, int, int);
    ~LecjiObiazat();
 
void giveInfLek();
void showInfLek();
 
 friend ostream& operator<< (ostream&,LecjiObiazat const&);
 friend istream& operator>> (istream&,LecjiObiazat&);
 
};
 
class LecjiNieodiazat : public Lekcji
{
    public:
 
    char jaki;
    int skolklud;
 
    LecjiNieodiazat() {}
    LecjiNieodiazat(char, char, char, double, int, int);
    ~LecjiNieodiazat();
 
void giveInfLek();
void showInfLek();
 
friend ostream& operator<< (ostream&,LecjiNieodiazat const&);
 friend istream& operator>> (istream&,LecjiNieodiazat&);
 
 
};
 
#endif
 
 
Ludi.cpp
 
 
#include <iostream>
#include <sstream>
#include <cstring>
#include "ludi.h"
 
using namespace std;
 
 
Ludi::Ludi(char a, char b, int c) //Ludi konstruktor
{
 a=name;
 b=surname;
 c=age;
 };
 
 
ostream& operator<< (ostream &wyjscie, Ludi const& l)
{
   wyjscie << "Name: " <<l.name<< " Surname: " <<l.surname<<endl;
   return wyjscie;
}
 
 
 istream& operator>> (istream &wejscie, Ludi& l)
 {
   wejscie >> l.name>> l.surname;
   return wejscie;
}
 
 
Lektor::Lektor(char a, char b, char s, char t, int c):Ludi(a,b,c)  // Lektor konstruktor
{
s=przedmiot;
t=tematlekcji;
 };
 
 Lektor Lektor:: operator+ (Lektor const& w)
{
   Lektor grp(name + w.name, sutname + w.surname, przedmiot + w.przedmiot, tematlekcji + w.tematlekcji, ade + w.age);
   return grp;
}
 
 Lektor Lektor:: operator- (Lektor const& w)
{
   Lektor wgrp (name - w.name, sutname - w.surname, przedmiot - w.przedmiot, tematlekcji - w.tematlekcji, ade - w.age);
   return wgrp;
}
 
ostream& operator<< (ostream &wyjscie, Lektor const& w)
{
   wyjscie << "Name: " <<w.name<< " Surname: " <<w.surname<<"Przedmiot: "<<w.przedmiot<<"Temat Wyklada: "<<w.tematlekcji<<"Age: "<<w.age<<endl;
   return wyjscie;
}
 
 istream& operator>> (istream &wejscie, Lektor& w)
{
   wejscie >>w.name>>w.surname>>w.przedmiot>>w.tematlekcji>>w.age;
   return wejscie;
}
 
Student::Student(char a, char b, char k, int c, int r, int m, double o):Ludi(a,b,c)  // Studenci konstruktor
{
 k=potok;
 r=year;
 m=power;
 o=mark;
 };
 
 Student Student:: operator+ (Student const& st)
{
   Student grp(name + st.name, surname + st.surname, potok + st.potok, age + st.age, year + st.year, power + st.power, mark + st.mark);
   return grp;
}
 
 Student Student:: operator- (Student const& st)
{
   Student wgrp(name - st.name, surname - st.surname, potok - st.potok, age - st.age, year - st.year, power - st.power, mark - st.mark);
   return wgrp;
}
 
 
ostream& operator<< (ostream &wyjscie, Student const& st)
{
   wyjscie << "Name: " <<st.name<< " Surname: " <<st.surname<<"Age: "<<st.age<<"Potok: "<<st.potok<< "Year of studies: "<< st.year<< "Avr mark: "<< st.mark<<"S kakoi moshnostju rabotaet: "<<st.power<<endl;
   return wyjscie;
}
 
 istream& operator>> (istream &wejscie, Student& st)
{
   wejscie >>st.name>>st.surname>>st.age>>st.potok>>st.year>>st.mark>>st.power;
   return wejscie;
}
 
  Laborant::Laborant(char a, char b, char p, int c, int w):Ludzi(a,b,c)  // Laboranci konstruktor
  {
      w=power;
      p=tematprojekta;
  }
 
Laborant Laborant:: operator+ (Laborant const& lb)
{
   Laborant grp(name + lb.name, surname + lb.surname, tematprojekta + lb.tematprojekta, age + lb.age, power + lb.power);
   return grp;
}
 
Laborant Laborant:: operator (Laborant const& lb)
{
   Laborant grp(name - lb.name, surname - lb.surname, tematprojekta - lb.tematprojekta, age - lb.age, power - lb.power);
   return grp;
}
 
 
 ostream& operator<< (ostream &wyjscie, Laborant const& lb)
{
   wyjscie << "Name: " <<lb.name<< " Surname: " <<lb.surname<<"Age: "<<lb.age<<"Tematprojektu: "<<lb.tematprojektu<<"S kakoi moshnostju rabotaet: "<<lb.power<<endl;
   return wyjscie;
}
 
istream& operator>> (istream &wejscie, Laborant& lb)
{
   wejscie >>lb.name>>lb.surname>>lb.age>>lb.tematprojektu>>lb.power;
   return wejscie;
}
 
void Ludi:: giveInf()    //Ludi
{
    cout<<"Przedstaw sie: \n"<<endl;
 
}
 
 
void Ludi:: giveInf()  // Lektor
{
    cout<<"Podaj dane Lektora: \n"<<"imie, nazwisko, wiek, przedmiot, tematwykladu"<<endl;
 
}
 
void Letor:: showInf()
{
    cout<<"Dane Lektora: "<<endl;
}
 
void Student:: giveInf()  // Student
{
    cout<<"Podaj dane Studenta: \n"<<"imie, nazwisko, wiek, kierunek, rok, moc, ocena: "<<endl;
 
}
 
void Student:: showInf()
{
    cout<<"Dane Studenta: "<<endl;
 
}
 
int Student:: work(int time)
{
    return power*time;
}
 
 
void Laborant:: giveInf()  //Laboranci
{
 
    cout<<"Podaj dane Laboranta: \n"<<"imie, nazwisko, wiek, tematprojektu"<<endl;
 
 
}
 
void Laborant:: showInf()
{
    cout<<"Dane laboranta: "<<endl;
}
 
int Laborant:: work(int time)
{
    return power*time;
}
 
 
Lekcji.cpp
 
#include <iostream>
#include <sstream>
#include <cstring>
#include "Lekcji.h"
 
using namespace std;
 
Lekcji::Lekcji(char n, char f, double x, int z)  // Lekcji konstruktory
{
    n=nazwa;
    f=temat;
    x=time;
    z=room;
}
 
LecjiObiazat::LecjiObiazat(char n, char f, double x, int z, int i):Lekcji(n,f,x,z)
{
    i=skolkludz;
}
 
LecjiNieobiazat::LecjiNieobiazat(char n, char f, char j, double x, int z, int u):Lekcji(n,f,x,z)
{
    u=skolklud;
    j=jaki;
}
 
 
ostream& operator<< (ostream &wyjscie, LecjiObiazat const& b)   // Operatory
{
   wyjscie <<"Nazwa Przedmiotu: " <<b.nazwa<< " Temat Wykladu: " <<b.temat<<"Skolko idet: "<<b.time<< "W jakoj Sale: "<<b.room<<"Skok lud chodzi: "<<b.skolkludz<<endl;
   return wyjscie;
}
 
 
 istream& operator>> (istream &wejscie, LecjiObiazat& b)
{
   wejscie >>b.nazwa>>b.temat>>b.czastrwania>>b.room>> b.skolkludz;
   return wejscie;
}
 
 
 
ostream& operator<< (ostream &wyjscie, LecjiNieobiazat const& r)
{
   wyjscie <<"Nazwa Przedmiotu: " <<r.nazwa<< " Temat Wykladu: " <<r.temat<<"Skolko idet: "<<r.time<< "W jakoj Sale: "<<r.room<<"Skok lud chodzi: "<<r.skolklud<<"Techniczny ili nie: "<<r.jaki<<endl;
   return wyjscie;
}
 
 
 istream& operator>> (istream &wejscie,  LecjiNieobiazat& r)
{
   wejscie >> r.nazwa>>r.temat>>r.time>>r.sala>>r.skolklud>>r.jaki;
   return wejscie;
}
 
void Wyklady::  giveInfLek() 
{
    cout<<"Podaj dane Wykladow: \n"<<"nazwa, temat, czas trwania, sala, ileosob"<<endl;
}
 
void Wyklady:: showInfLek()
{
    cout<<"Pokaz dane Wyklada: \n"<<endl;
 
}
 
void WObowiazkowe:: giveInfLek() 
 {
     cout<<"Podaj dane Wykladow Obowiazkowych: \n"<<"nazwa, temat, czas trwania, sala, ileosob"<<endl;
 }
 
void WObowiazkowe:: showInfLek()
{
    cout<<"Pokaz dane Wyk Obowiazkowego: \n"<<endl;
 
}
 
void WObieralne:: giveInfLek() 
{
   cout<<"Podaj dane Wykladow Obieralnych: \n"<<"nazwa, temat, czas trwania, sala, ileosob, jaki"<<endl;
}
 
void WObieralne:: showInfLek()
{
    cout<<"Pokaz dane Wyk Obieralnego: \n"<<endl;
}
 
 
main.cpp
 
#include <iostream>
#include <sstream>
#include <cstring>
 
#include "Lekcji.h"
#include "ludi.h"
 
using namespace std;
 
int main()
{
 
 
    Ludi l, l1;
    Student st1, st2;
    Laborant lb1;
    Lektor w1;
 
    Lekcji k1;
    LecjiNieobiazat r1, r2;
    LecjiObiazat b1;
 
 
 
l1.introduce();
cin>> l1;
st1.giveInf();
cin>>st1;
st2.giveInf();
cin>>st2;
lb1.work(7);
st1.showInf();
cin>>st1;
 
 cout<<w1.tematlekcji<<endl;
 cout<<st1.mark<<endl;
 cout<<st1.potok<<endl;
 cout<<st2.year<<endl;
 cout<<st1.work(10)<<endl;
 cout<<lb1.tematprojektu<<endl;
 cout<<lb1.work(9)<<endl;
 
 
 
cout<<"Podruzhy Studentow: "<<st1+st2<<endl;
cout<<"Rozdieli studentow: "<<st1+st2-st2<<endl;
 
 
r1.giveInfLek() ;
cin>>r1;
r2.giveInfLek() ;
cin>>r2;
 
b1.giveInfLek() ;
cin>>b1;
 
r2.showInfLek() ;
cout<<r2<<endl;
 
 
cout<<b1.skolkludz<<endl;
cout<<r1.jaki<<endl;
 
 
 
return 0;
 
}
0
503 / 352 / 94
Регистрация: 22.03.2011
Сообщений: 1,112
20.04.2013, 02:45 4
Вы написали много, но к сожалению неправильно.

Это пример.
C++
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
#ifndef _HUMAN_H
#define _HUMAN_H
 
#include <string>
 
namespace std
{
    class istream;
}
 
typedef unsigned char ubyte;
 
class Human
{
public:
    Human(const std::string& name, const std::string& surname, ubyte age)
        : _name(name), _surname(surname), _age(age) {}
    virtual ~Human() {}
    
    std::string() name() const { return name; }
    std::string() surname() const { return _surname; }
    
    void set_age(ubyte age) { _age = age; }
    ubyte age() const { return _age; }
 
private:
    std::string _name;
    std::string _surname;
 
    ubyte _age;
 
    friend std::istream& operator>> (std::istream&, Human&);
};
 
#endif //_HUMAN_H
Подправьте Ваш код, и мы продолжим.

п.с. Вы складываете людей это как?
0
0 / 0 / 0
Регистрация: 23.03.2013
Сообщений: 16
20.04.2013, 03:04  [ТС] 5
Мне нужно написать программу с перегрузкой операторов +\- и <<\>>б где базовые классы это Люди и Лекции, а производные - лектора, студики, лаборанты и лекции обязательные и необязательные.
0
503 / 352 / 94
Регистрация: 22.03.2011
Сообщений: 1,112
20.04.2013, 03:20 6
Выложите полное задание. Просто я не могу понять куда здесь тулить перегрузку операторов +/-. И обязательные и не обязательные леции это обязательно наследование? Или можно енумчик?
0
0 / 0 / 0
Регистрация: 23.03.2013
Сообщений: 16
20.04.2013, 15:35  [ТС] 7
Это все задание

Добавлено через 12 часов 12 минут
И вопрос: Почему во многих местах надо приписывать std:: ?? Разве нельзя написать просто
C++
1
friend ostream& operator<< (ostream&,Ludi const&);
??
А так же для чего для чего конструктор выглядит именно так??
C++
1
2
 Human(const std::string& name, const std::string& surname, ubyte age)
        : _name(name), _surname(surname), _age(age) {}
имею в виду со словом стринг, опять же стд и через двоеточие писать
_name(name), _surname(surname), _age(age)
??
0
503 / 352 / 94
Регистрация: 22.03.2011
Сообщений: 1,112
20.04.2013, 18:08 8
Цитата Сообщение от Jadzia Посмотреть сообщение
И вопрос: Почему во многих местах надо приписывать std:: ?? Разве нельзя написать просто
friend ostream& operator<< (ostream&,Ludi const&);
Можно, но ... класс ostream находиться в пространстве имен std и для его использования нужен полный квалификатор. Этого можно достичь 2 путями:
C++
1
2
3
4
using namespace std;
//или using std::ostream;
.....
ostream& operator<<....
или

C++
1
std::ostream& operator<<...
Но, если в проекте будет еще один class ostream, не из пространнства имен std, то в первом случае. возникнет путаница кто есть кто.

------------------------------------
C++
1
Human(const std::string& name, const std::string& surname, ubyte age)
Это перегруженный конструктор, принимающий 3 строки (у Вас был char а это один символ). Он один, без конструктора по умолчанию, потому что человек должен, в нормальном мире, иметь имя, фамилию (или ее аналог) и возраст.

Это список инициализации. Он инициализирует поля класса
C++
1
: _name(name), _surname(surname), _age(age)
Это присваивание а не инициализация.
C++
1
2
3
4
5
6
Human(const std::string& name, const std::string& surname, ubyte age)
{
_name = name;
_surname = surname;
 _age = 42;
}
Разницу между присваиванием и инициализацией найдете сами.

------------------------------------
По поводу Вашего задания. Я уже говорил подправьте классы поначалу так, потом продолжим.
И да, отвечая на Ваш вопрос, я могу составить и реализовать Вам дом, но я во первых не знаю его пределов и контекста использования. А во вторых вы в нем будете долго разбираться.



В догонку ... это приблизительный интерфейс Лектора.
C++
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
#ifndef _LECTURER_H
#define _LECTURER_H
 
#include "human.h"
#include <set>
 
class Lecturer : public Human
{
public:
    Lecturer(const std::string& name, const std::string& surname, ubyte age)
        : Human(name, surname, age) {}
 
    Lecturer(const std::string& name, const std::string& surname,
        ubyte age, const std::string& speciality)
        : Human(name, surname, age), _speciality(speciality) {}
 
    std::string speciality() const { return _speciality; }
 
    void add_subject(const std::string& subject) { _subjects.insert(subject); }
    void remove_subject(const std::string& subject) { _subjects.erase(subject); }
 
    bool find_subject(const std::string& subject) const { return _subjects.count(subject) > 0; }
    std::set<std::string> get_subjects() const { return _subjects; }
 
private:
    std::string _speciality;
    std::set<std::string> _subjects;
 
    friend std::istream& operator>> (std::istream& , Lecturer&);
};
 
#endif //_LECTURER_H
1
0 / 0 / 0
Регистрация: 23.03.2013
Сообщений: 16
20.04.2013, 18:35  [ТС] 9
Спасибо большое! Сейчас буду разбираться)
Скоро будут вопросы.. и похоже много..)

Добавлено через 7 минут
ВОт например:

C++
1
2
3
4
5
6
Lecturer(const std::string& name, const std::string& surname, ubyte age)
        : Human(name, surname, age) {}
 
    Lecturer(const std::string& name, const std::string& surname,
        ubyte age, const std::string& speciality)
        : Human(name, surname, age), _speciality(speciality) {}

Зачем 2 раза это писать?? Разве нельзя сразу и только 2ю запись?

И зачем эта строка? ->
C++
1
 std::string speciality() const { return _speciality; }
Добавлено через 1 минуту
И в классе Person:

C++
1
typedef unsigned char ubyte;
зачем??
0
503 / 352 / 94
Регистрация: 22.03.2011
Сообщений: 1,112
20.04.2013, 20:11 10
Цитата Сообщение от Jadzia Посмотреть сообщение
Lecturer(const std::string& name, const std::string& surname, ubyte age)
: Human(name, surname, age) {}
Лектор тоже имеет имя, фамилию, и возраст.

Цитата Сообщение от Jadzia Посмотреть сообщение
: Human(name, surname, age) {}
Это перенаправление переменных в конструктор предка, так как эти переменные переменные предка.

Цитата Сообщение от Jadzia Посмотреть сообщение
Lecturer(const std::string& name, const std::string& surname,
ubyte age, const std::string& speciality)
: Human(name, surname, age), _speciality(speciality) {}
Это второй перегруженный конструктор, как Вы видите он принимает еще и специальность (например спец по квантовой физике). Эта переменная из головы, вы можете добавить свои (например лектор может быть доктором/профессором или доцентом или иметь/не иметь публикаций, тип публикаций и т.д.), я написал, что это приблизительный интерфейс.

Цитата Сообщение от Jadzia Посмотреть сообщение
Зачем 2 раза это писать?? Разве нельзя сразу и только 2ю запись?
Можно .... можно еще и так. Я просто привел пример.
C++
1
2
3
Lecturer(const std::string& name, const std::string& surname,
ubyte age, const std::string& speciality = std::string()) // это переменная по умолчанию
: Human(name, surname, age), _speciality(speciality) {}
где
C++
1
speciality = std::string()
говорит о том, что лектор может(тут главное МОЖЕТ) не иметь специальности, например еще не сдал докторскую.
Например
C++
1
2
Lector lector_1("Иван", "Иванович", 42, "Квантовая физика");
Lector lector_2("Василий", "Васильевич", 21); // заметьте 4 переменной нет, она будет проинициализирована значением по умолчанию
Цитата Сообщение от Jadzia Посмотреть сообщение
Добавлено через 1 минуту
И в классе Person:
typedef unsigned char ubyte;
Если Вы не знаете что это замените на int, а вообще это из целей экономии памяти, так как возраст человека вряд ли превысит 255 лет.

Цитата Сообщение от Jadzia Посмотреть сообщение
И зачем эта строка? ->
std::string speciality() const { return _speciality; }
Узнать какая у лектора специальность, например, студент захочет писать доклад по определенному предмету ему нужно будет знать какой лектор ему может помочь с этим.


п.с. Я так понимаю вы вообще не знакомы с ООП, а также с ООП в С++. Почитайте поначалу книги.
1
20.04.2013, 20:11
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
20.04.2013, 20:11
Помогаю со студенческими работами здесь

Что такое "перегрузка операторов"? Каковы принципы работы перегруженных операторов и назначение указателя this
Добрый день . Помогите понять принцип работы перегрузки операторов. объясните пожалуйста в...

Наследование операторов
Пожалуйста, подскажите как правильно задать оператор например =, в базовом классе, а вызывать в...

перегрузка операторов С++
есть программа: #include &quot;stdafx.h&quot; #include &lt;iostream&gt; using namespace std; class Time {...

Перегрузка операторов
Решите пожалуйсто задачу: Разработайте программу, в которой реализована перегрузка оператора...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
10
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru