Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arvinsingh/advanced-oop
advanced object-oriented programming
https://github.com/arvinsingh/advanced-oop
classes data-structures inheritance memory-management standard-library
Last synced: 2 days ago
JSON representation
advanced object-oriented programming
- Host: GitHub
- URL: https://github.com/arvinsingh/advanced-oop
- Owner: arvinsingh
- Created: 2024-03-02T23:42:55.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-06-10T22:55:16.000Z (5 months ago)
- Last Synced: 2024-06-11T01:36:13.342Z (5 months ago)
- Topics: classes, data-structures, inheritance, memory-management, standard-library
- Language: C++
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
## For advanced Object Oriented Programming CPP/C
To run on commandline
Compile
```g++ -c [cpp files to compile]```Link object files
```g++ -o [output exe filename] [input object files to link]```Alternatively, to compile & link in one step
```g++ -o [output exe filename] [input c++ files]```- Write & complie
- Hello world
- Fibonacci Numbers
- Accepting commandline arguments- Memory Allocation
- Variable length input
- Dynamic memory allocation and lifespan managment using best practices- Data Structures
- Structures to group together variables referencing same object
- Deep copy
- Carry foward best practices- Classes
- Encapsulation
- Access to protected variables- Inheritance
- Create abstract class with virtual functions
- derive abstract base class- Standard Library Containers
- Implement hash function
- Implement equality and comparasion operators