TAILIEUCHUNG - Kỹ thuật lập trình_Module10

Tham khảo tài liệu 'kỹ thuật lập trình_module10', 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ả | Module 10 Inheritance Virtual Functions and Polymorphism Table of Contents CRITICAL SKILL Inheritance CRITICAL SKILL Base Class Access CRITICAL SKILL Using protected CRITICAL SKILL Calling Base Class CRITICAL SKILL Creating a Multilevel CRITICAL SKILL Inheriting Multiple Base CRITICAL SKILL When Constructor and Destructor Functions Are CRITICAL SKILL Pointers to Derived CRITICAL SKILL Virtual Functions and CRITICAL SKILL Pure Virtual Functions and Abstract This module discusses three features of C that directly relate to object-oriented programming inheritance virtual functions and polymorphism. Inheritance is the feature that allows one class to inherit the characteristics of another. Using inheritance you can create a general class that defines traits common to a set of related items. This class can then be inherited by other more specific classes each adding those things that are unique to it. Built on the foundation of inheritance is the virtual function. The virtual function supports polymorphism the one interface multiple methods philosophy of object-oriented programming. 1 C A Beginner s Guide by Herbert Schildt CRITICAL SKILL Inheritance Fundamentals In the language of C a class that is inherited is called a base class. The class that does the inheriting is called a derived class. Therefore a derived class is a specialized version of a base class. A derived class inherits all of the members defined by the base class and adds its own unique elements. C implements inheritance by allowing one class to incorporate another class into its declaration. This is done by specifying a base class when a derived class is declared. Let s begin with a short example that illustrates several of the key features of inheritance. The following program creates a base class called TwoDShape that stores

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.