Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/A-Introduction/welcome-to-oo.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The distinguishing features of C, C++ and Java are:

- C has no object-oriented support. C leaves us no choice but to design our programming solutions in terms of activity-oriented structures.
- C++ is **hybrid**. It augments C with object-oriented features. C++ lets us build our solutions partly from activities and partly from objects. The main function in any C++ program is a C function, which is not object-oriented. C++ stresses compile-time logic.
- Java is **purely object-oriented**. It excludes all non-object-oriented features. Java leaves us no choice but to design our solutions using an object-oriented structures.
- Java is **heavily object-oriented**. It excludes all non-object-oriented features. Java leaves us no choice but to design our solutions using an object-oriented structures.

## Features of C++

Expand Down