No description
Find a file
Vitor Fernandes 6bd2593d3e
More on math
2020-07-16 01:01:14 +01:00
clab Added gitignore 2018-12-01 14:09:07 +00:00
src More on math 2020-07-16 01:01:14 +01:00
.gitignore More on .gitignore 2020-07-07 17:56:38 +01:00
CMakeLists.txt Added CPack support. Added license.txt file 2020-07-07 17:53:12 +01:00
LICENSE.txt Added CPack support. Added license.txt file 2020-07-07 17:53:12 +01:00
README.md Added readme 2020-07-07 16:33:20 +01:00

CPlusPlus Laboratory

What is?

This is just c++ project that works as a engineering laboratory. C++ is an extension of the C language that adds some Oriented Programing Features. The C++ language is a strange one. Tries to give high level primitives to the developer but also the full responsibility of memory management and low level that characterizes the c language. So why to explore C++ today when so many high level languages exist in place? That's an obvious question right? The reason why is basically because C++ is at the same time a low level language and high level one. You got the access to low level trickery and also the primitives to implement the design patterns you usually find in any modern software project.

In a nutshell this project has the sole purpose to serve as a learning platform

What can you learn with C++

You can understand in a practical way how you can manage the memory manually. How you can avoid some of the most pitfalls like memory leak problems by following practices like RAII. By exploring the technics that revolve around memory allocation you can understand in a more profound way how languages like java, python, and rust manage memory and the obvious tradeoffs involved.