1 / 6

Composition and friend Functions

Composition and friend Functions. Composition. All the data members we have seen so far have been simple variables (int, double, etc) It is possible to have objects of classes as data members of other classes This is called composition. Example.

jkennon
Download Presentation

Composition and friend Functions

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Composition and friend Functions CS250 Introduction to Computer Science II

  2. Composition • All the data members we have seen so far have been simple variables (int, double, etc) • It is possible to have objects of classes as data members of other classes • This is called composition CS250 Introduction to Computer Science II

  3. Example • Create a class Employee that will contain the employee name and the time the employee starts work and the time the employee finishes work • The time should be represented as objects of class Time CS250 Introduction to Computer Science II

  4. Friend Functions • Only the member functions of a class have direct access to the private data members of the class • friend functions are friends of the class that are defined outside of the class but still have access to private data members CS250 Introduction to Computer Science II

  5. friend Functions • The function prototype is placed in the class, preceded by the keyword friend • The function definition can be written anywhere without the class name (class::) • The function is able to directly access the private data members CS250 Introduction to Computer Science II

  6. Summary • Today we covered • Composition • Friend Functions • Completed pages 478 - 489 CS250 Introduction to Computer Science II

More Related