Fix typos and change several words

This commit is contained in:
Dmitry Savin
2021-10-30 11:51:45 +03:00
committed by Evgeny
parent 02e002f0d4
commit 1ca0b6d753

View File

@@ -1,17 +1,17 @@
# C++ — It's Simple! # C++ — It's Simple!
Modern C++ is much simpler that it is thought to be. The language changed a lot during all the years of transformation, and gained the capabilities that allow writing safe and effective code. No need to think about memory leaks if one uses the primitives of the latest standards. The compiler has also become much smarter. It can apply a tremendous amount of optimizations of your code, delivering the maximum performance. It is still possible to optimize the code by manual tweaks and tricks. Modern C++ is much simpler that it is thought to be. The language has changed a lot during all the years of transformation, and gained the capabilities that allow writing safe and effective code. No need to think about memory leaks when using the primitives of the latest standards. The compiler has also become much smarter. It can apply a tremendous amount of optimizations to your code, delivering the maximum performance. It is still possible to optimize the code by manual tweaks and tricks, though.
The language has shourcomings nonetheless. The main is the absense of a standard package manager. There is bunch of products that aspire to fill this niche, but to no avail yet. The language has its shortcomings nonetheless. The main is the absence of a standard package manager. There is bunch of products that aspire to fill this niche, but as yet to no avail.
ALso, C++ succumbed to its own paradigm: "The developer does not pay for what they do not need". In practice the developers of commersial software aren't too picky about the dependencies, which leads to the reverse situation: the developer pays each time they need a dependency. It leads to "interesting" side effects during the project build. Anyway, this problem is being gradually solved, too. Also, C++ succumbed to its own paradigm: "The developer does not pay for what they do not use". In practice the developers of commercial software aren't too picky about the dependencies, which leads to the reverse situation: the developer pays each time they need a dependency. It leads to "interesting" side effects during the project build. Anyway, this problem is being solved gradually, too.
To get started with C++ one needs a basic set of school knowledge: To get started with C++ one needs a basic set of school knowledge:
- Arithmetics - Arithmetic;
- Boolean algebra - Boolean algebra;
- Drawing flowcharts - Drawing flowcharts;
- Number representation in different numeral systems. - Number representation in different numeral systems.
Despite all the background behind C++ we believe that its modern version is much simpler that it used to be. Despite all the history behind C++ we believe that its modern version is much simpler that it used to be.
Don't be afraid to learn it and good luck! Don't be afraid to learn it and good luck!