Characteristics Of
C++
C++ is not a purely
object-oriented language but a hybrid that contains the functionality of the C
programming language. This means that you have all the features that are
available in C:
-
Universally usable modular
programs
-
Efficient, close to the machine
programming
-
Portable programs for various
platforms
The large quantities of existing
C source code can also be used in C++ programs. C++ supports the concepts of
object-oriented programming (or OOP for short), which are:
-
Data abstractions, that is, the
creation of classes to describe (বর্ননা করা) objects.
-
Data encapsulation for controlled
access to object data.
-
Inheritance by creating derived
classes ( including multiple derived classes)
-
Polymorphism (Greek for
multiform), that is ,the implementation ( বাস্তবায়ন) of
instructions that can have varying (বিভিন্ন) effects
during program execution.
Comments
Post a Comment