CS 3304: Comparative Languages
Object-Oriented Programming
[
Course Documents
] : [
Object-Oriented Programming
]
Previous
Contents
Next
Keyword Index
C++
General Characteristics:
Mixed typing system
Constructors and destructors
Elaborate access controls to class entities
Inheritance
A class need not be subclasses of any class
Access controls for members are:
Private (visible only in the class and friends)
Public (visible in subclasses and clients)
Protected (visible in the class and in subclasses, but not clients)