List of pages for cpp
2024
2016
Structured Bindings [PL]
Structured Bindings is a new way to decompose values returned from functions. It's similar to some other programming languages and greatly simplifies the code.
2015
Przypisać nieprzypisywalne [PL]
How can we live with types which do not implement assignment operator?
Problem dependant names [PL]
How C++ handles dependant names and why we must use typename keyword everywhere.
Name hiding [PL]
Name hiding is a surprising feature of C++. Here we'll learn a little more about it.
Najważniejszy const [PL]
There is one const usage in C++ which is a little different than the others. Andrei Alexandrescu called it the most important const.
2014
Zwracanie wartości z funkcji [PL]
The article about Return Value Optimization - one of the most important features of C++ compilers.
Konwersja const_iteratora na iterator [PL]
A trick which allows us to easily convert from const_iterator to iterator. Please don't do that.
2013
std::move [draft]
-A short introduction to one of the most breakthrough features of C++11: rvalue references and move semantics.
2012
2011
Nieskończenie wiele argumentów... [PL]
It's possible to create a functions in C, similar to printf and scanf, which accept infinite number of arguments.