Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 1.15 KB

README.md

File metadata and controls

26 lines (23 loc) · 1.15 KB

prog2v

This repository contains some (hopefully) useful source files and explanations about the object-oriented C++ programming.

Disclaimer

  • I have created and maintained this repository for educational purposes.
  • It may contain errors! (I compiled and ran all of the projects with the Code::Blocks IDE, so it should not contain compilation errors...)
  • I welcome bug reports and constructive criticism!

Table of contents

Containers

A container is an object that stores a collection of objects (elements). For example you can store integer numbers in a Vector (dynamic array) container.

This folder contains some of the most important containers:

  • Stack
  • String
  • Vector

Topics

There are example source codes about some important topics in this folder:

  • Namespaces
  • Operator overloading
  • Handling files

Exercises

These files are the solutions of some basic exercises.

For example the implementation of the following class diagram: Class diagram of the Equipments