https://github.com/samirhamadaa/developer
A structured C++ project implementing OOP principles, focusing on encapsulation, abstraction, and multi-level inheritance with real-world object modeling.
https://github.com/samirhamadaa/developer
abstraction classes cpp encapsulation inheritance object-oriented-programming oop
Last synced: 8 months ago
JSON representation
A structured C++ project implementing OOP principles, focusing on encapsulation, abstraction, and multi-level inheritance with real-world object modeling.
- Host: GitHub
- URL: https://github.com/samirhamadaa/developer
- Owner: SamirHamadaa
- Created: 2025-03-05T09:24:30.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-03-05T09:32:56.000Z (9 months ago)
- Last Synced: 2025-03-05T10:31:22.447Z (9 months ago)
- Topics: abstraction, classes, cpp, encapsulation, inheritance, object-oriented-programming, oop
- Language: C++
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
OOP Inheritance Example in C++ :
This project demonstrates Object-Oriented Programming (OOP) principles, specifically inheritance, using C++.
📌 Features :
clsPerson → Base class representing a person.
clsEmployee → Inherits from clsPerson, adding employee-related attributes.
clsDeveloper → Inherits from clsEmployee, adding a programming language attribute.