From e1bcf5315fcf4026e327f03c92cfa02815486fac Mon Sep 17 00:00:00 2001 From: daknguyen-Seneca Date: Fri, 25 Apr 2025 21:45:57 -0400 Subject: [PATCH] updating java is heavily object-oriented not purely --- docs/A-Introduction/welcome-to-oo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/A-Introduction/welcome-to-oo.md b/docs/A-Introduction/welcome-to-oo.md index ab81e6b..5692c02 100644 --- a/docs/A-Introduction/welcome-to-oo.md +++ b/docs/A-Introduction/welcome-to-oo.md @@ -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++