CPP04 1.0
|
This file contains the main entry point for C++ Module 04 Exercise 00. [詳解]
#include "Animal.hpp"
#include "Cat.hpp"
#include "Dog.hpp"
#include "Tests.hpp"
#include "WrongAnimal.hpp"
#include "WrongCat.hpp"
#include <iostream>
関数 | |
int | main () |
Main function of the program. | |
This file contains the main entry point for C++ Module 04 Exercise 00.
It serves as a test driver to demonstrate basic inheritance and polymorphism using the Animal, Dog, Cat, WrongAnimal, and WrongCat classes. It showcases the behavior of virtual functions versus non-virtual functions when called through base class pointers.
main.cpp に定義があります。