TAILIEUCHUNG - Microsoft visual C_2

Tham khảo tài liệu 'microsoft visual c_2', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Object-Oriented Programming in C Employee Employee const string stName const string stEmployer Person stName m_stEmployer stEmployer Empty. void Employee Print const cout Name m_stName endl cout Company m_stEmployer endl In the main function we cannot create an object of the Person class as it is an abstract class. Neither can we let the pointer pPerson point at such an object. However we can let it point at an object of the class Student or Employee. The condition for Student and Employee being concrete classes was that they defined every pure virtual method so we can be sure that there always exists a definition of Print to call. include string include iostream using namespace std include include include void main Does not work as Person is an abstract class. Person person John Smith cout endl Student student Mark Jones Berkeley cout endl Employee employee Adam Brown Microsoft cout endl In this version there is no object person to point at. Person pPerson person pPerson- Print cout endl 64 Chapter 2 Person pPerson student pPerson- Print Calls Print in Student. cout endl pPerson employee pPerson- Print Calls Print in Employee. Arrays of Objects An array of objects is not really so much different from an array of values. However one issue to consider is that there is no way to call the constructor of each object individually. Therefore the class must have a default constructor or no constructor at all. Remember that if a class has one or more constructors one of them must be called every time an object of the class is created. The default constructor is called for each car object. Car carArray 3 carArray 2 .IncreaseSpeed 100 The default constructor is called for each car object. Car pDynamicArray new Car 5 pDynamicArray 4 .IncreaseSpeed 100 delete pDynamicArray Just as for values we can also initialize an object array with a list. In that case we can call constructors other than the .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.