0
C++ is a fully OOP language?
4 Answers
+ 18
C++ allows you to create your own types and libraries. The most important type is a class, allowing object oriented programming. A class is an abstract data type with a hidden representation and a set of public member functions and types. Classes can be organized into a hierarchy (inheritance), and you can write code that accepts any type in this hierarchy (polymorphism). Functions and classes can be parameterized by type (templated).
+ 5
yeah
+ 5
Yes. You are able to use OOP concepts like classes and objects, as well as inheritance and polymorphism
+ 1
Yes.