Monday, December 25, 2023

Vehicle Using Inheritance in C++

 A simple program that will demonstrate the concepts and principles of Inheritance using C++ programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

Program Listing
#include <iostream>

class Vehicle {
public:
    virtual void move() {
        std::cout << "\tVehicle is moving." << std::endl;
    }
};

class Car : public Vehicle {
public:
    void move() override {
        std::cout << "\tCar is driving." << std::endl;
    }
};

int main() {
    Vehicle vehicle;
    Car car;

   std::cout <<"\n\n\tVehicle Using Inheritance in C++\n\n";
    vehicle.move(); // Calls the base class function
    car.move();     // Calls the overridden function in the derived class
    std::cout << "\n\tEnd of Program. Thank you for using this program." << std::endl;
    return 0;
}



No comments:

Post a Comment