-2
beyler dünden beri başlık açtım kimse çözemiyo amk
aranızda bilgisayar m-h okuyan varsa yardım etsin la
dersi adı nesne tabanlı programlama konu inheritance işte miras olayı
ders ingilizce inş soruyu anlarsınız
________________________________________________________
3.
include<iostream>
4.
include<string>
using namespace std;
class PersonType{
public:
void print() const;
void setName(string first, string last);
string getFirstName() const;
string getLastName() const;
PersonType(string first = "", string last = "");
private:
string firstName, lastName;
}
/*Design the class DoctorType, which is inherited from class PersonType
with an additional data member to store a doctor's speciality.
Add appropriate constructors and member functions to initialize, access, and
manipulate the data members*/
/*Design class BillType with data members to store a patient's ID and a patient's
hospital charges. Add appropriate constructors and member functions to initialize, access, and
manipulate the data members*/
/*Design the class PatientType inherited from class PersonType with additional
data members to store a patient's ID, age, attending physician's name
(for physician's name, use DoctorType object).*/
/*Write a program to test your classes*/
soruyu özet geçeyim : hoca bir tane prototip hazırladı en yukarda görüyonuz person type diye bundan bi tane doctor typi yaratacaz fakat doctor person typinden inherit yapacak ismi ve soy ismi ve bir de ek olarak kendi doctor'S speciality diye bi tane data member ı olacak . bu data member manipulate edecez işte fonksiyonlarla
daha sonra bi tane patient(hasta) typimizi olacak bu da en yukardaki person typeden inherit edecek özellikleri ve ek olarak data memberları hastanın id numarası , yaşı , bunları doctor typi objesi kullanarak yapcaz
ve son olarak bill typi yani fatura typi yarataz bu da data member olarak patientin id nosu (yukarda var) ve ek olarak hastane ücreti (charge) olarak constructırda üretecez ve member (ana) fonksiyonlarla buralara erişicez
beyler soru bu sınavda buna benzer bi soru geleceği için çözümü lazım acil işi bilenler varsa yardım
pm de atabilirsiniz