Example of Object-Oriented Programming (OOP) in C++

This article provides an illustrative example of object-oriented programming (OOP) in C++, covering concepts such as classes, objects, inheritance, and polymorphism.

In C++, object-oriented programming is a programming paradigm that allows you to organize code in a way that makes it easier to manage and extend. This article will present the basic concepts of OOP through practical examples.

C++ code

#include <iostream>
#include <string>

// Base Class
class Animal {
public:
    // Method to display animal sound
    virtual void speak() {
        std::cout << "Animal speaks" << std::endl;
    }
};

// Derived Class from Animal
class Dog : public Animal {
public:
    // Override the speak method
    void speak() override {
        std::cout << "Dog barks" << std::endl;
    }
};

// Derived Class from Animal
class Cat : public Animal {
public:
    // Override the speak method
    void speak() override {
        std::cout << "Cat meows" << std::endl;
    }
};

int main() {
    Animal* animal1 = new Dog(); // Create Dog object
    Animal* animal2 = new Cat(); // Create Cat object

    animal1->speak(); // Call speak method of Dog
    animal2->speak(); // Call speak method of Cat

    delete animal1; // Free memory
    delete animal2; // Free memory

    return 0;
}

Detailed explanation

  • #include <iostream>: Library for input/output functionality.
  • #include <string>: Library for string data type.
  • class Animal: Declaration of the base class Animal.
  • virtual void speak(): A virtual method that can be overridden in derived classes.
  • class Dog : public Animal: Declaration of the Dog class inheriting from Animal.
  • void speak() override: Override the speak method from the base class.
  • Animal* animal1 = new Dog(): Create a Dog object and assign it to an Animal pointer.
  • animal1->speak(): Call the speak method for the Dog object.
  • delete animal1;: Free memory for the Dog object.

System Requirements:

  • C++ compiler (such as g++ or MSVC)

How to install the libraries needed to run the C++ code above:

Just install a C++ compiler.

Tips:

  • Use virtual methods to achieve polymorphism in OOP.
  • Be mindful of memory management to avoid memory leaks.
Tags: OOP, C++


Related

Preventing XSS (Cross-site Scripting) in C++

A guide on techniques to prevent XSS (Cross-site Scripting) in C++ applications, helping to protect web applications from attacks by controlling and encoding user input. This article provides methods and illustrative examples to enhance security.
Example of Factory Pattern in C++

This article presents the Factory Pattern in C++, a popular design pattern that helps create objects without specifying the exact class of the object. This increases flexibility and extensibility in the codebase.
How to automatically log into a website using Selenium with Chrome in C++

A guide on using Selenium with ChromeDriver in C++ to automatically log into a website. The article explains how to set up Selenium and ChromeDriver and the steps to log in to a specific website.
How to pass Authentication Header Token when POSTing data to API using Node.js

A step-by-step guide on how to pass an Authentication Token in the header while POSTing data to an API using Node.js. The article demonstrates how to use the `axios` or `http` package to perform authenticated HTTP requests.
Fetching Data from MySQL Database in C++

A detailed guide on how to fetch data from a MySQL database using C++ with Prepared Statements. The article helps you understand how to connect, execute queries, and handle results using MySQL Connector/C++.
All Methods for String Concatenation in C++

This article compiles all methods for string concatenation in C++, helping you understand the different methods from basic to advanced, including using the `+` operator, the `append()` function, and methods from the `string` library.
Generate Captcha Using C++

A guide on how to create a Captcha using C++ with graphics libraries to generate random text and images, providing protection against automated attacks for web applications or software.
Example of Singleton Pattern in C++

This article introduces the Singleton Pattern in C++, including its implementation and application in object management. The Singleton Pattern ensures that a class has only one instance and provides a global access point to it.
Get the last character of a string in C++

A guide on how to retrieve the last character of a string in C++ using methods and syntax from the `string` library. This article helps you understand string manipulation and character access in C++.
Multithreading in C++

A detailed guide on handling multithreading in C++ using the `thread` library. This article helps you understand how to use multithreading to improve concurrent processing efficiency.

main.add_cart_success