Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raveriss/cpp03
C++98 exercises on inheritance, exploring base and derived class dynamics and multiple inheritance challenges.
https://github.com/raveriss/cpp03
class-hierarchy coding-exercises cpp cpp98 ecole42 inheritance multiple-inheritance object-oriented-programming software-development
Last synced: about 1 month ago
JSON representation
C++98 exercises on inheritance, exploring base and derived class dynamics and multiple inheritance challenges.
- Host: GitHub
- URL: https://github.com/raveriss/cpp03
- Owner: raveriss
- Created: 2024-03-24T19:27:47.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-09T11:41:08.000Z (8 months ago)
- Last Synced: 2024-10-19T19:51:58.556Z (2 months ago)
- Topics: class-hierarchy, coding-exercises, cpp, cpp98, ecole42, inheritance, multiple-inheritance, object-oriented-programming, software-development
- Language: C++
- Homepage:
- Size: 1.64 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# **Projet CPP03 - École 42**
## Introduction
CPP03 explores the concept of inheritance in C++, demonstrating its utility in building complex object hierarchies. This module continues the exploration of object-oriented programming (OOP) principles using the C++98 standard, with a specific focus on how classes can inherit attributes and behaviors from other classes.## Structure du Projet
Each exercise in this module progressively builds on the concept of inheritance, introducing more complex scenarios and challenges:### Exercise 00: Aaaaand... OPEN!
- **Directory:** `ex00/`
- **Files to submit:**
- `Makefile`
- `main.cpp`
- `ClapTrap.{h, hpp}`
- `ClapTrap.cpp`#### Functionality
Implementation of the `ClapTrap` class with basic functionalities like attack, take damage, and repair. This exercise sets the foundation for understanding how base classes work.### Exercise 01: Serena, my love!
- **Directory:** `ex01/`
- **Files to submit:**
- Files from Exercise 00
- `ScavTrap.{h, hpp}`
- `ScavTrap.cpp`#### Functionality
Introduction of the `ScavTrap` class, which inherits from `ClapTrap`. This exercise expands on the use of inheritance and constructor/destructor chaining.### Exercise 02: Repetitive work
- **Directory:** `ex02/`
- **Files to submit:**
- Files from previous exercises
- `FragTrap.{h, hpp}`
- `FragTrap.cpp`#### Functionality
Creation of the `FragTrap` class, derived from `ClapTrap`, and showcasing how inherited classes can override parent functionalities while introducing their own unique features.### Exercise 03: Now it’s weird!
- **Directory:** `ex03/`
- **Files to submit:**
- Files from previous exercises
- `DiamondTrap.{h, hpp}`
- `DiamondTrap.cpp`#### Functionality
Development of the `DiamondTrap` class, which inherits from both `ScavTrap` and `FragTrap`. This exercise highlights the complexities and potential pitfalls of multiple inheritance.## Compilation and Execution
To compile an exercise, navigate to the corresponding directory and use `make`. Each program can be run from the command line to demonstrate the designed functionalities.## Ressources Utilisées
- [Apprenez à programmer en C++ sur OpenClassrooms](https://openclassrooms.com/fr/courses/1894236-apprenez-a-programmer-en-c)
- [Programmez en orienté objet avec C++ sur OpenClassrooms](https://openclassrooms.com/fr/courses/7137751-programmez-en-oriente-objet-avec-c)