C++ differences between const and constexpr
Some of the C++ differences between const and constexpr are discussed here. The two keywords ‘const’ and ‘constexpr’ qualify a
Read moreSome of the C++ differences between const and constexpr are discussed here. The two keywords ‘const’ and ‘constexpr’ qualify a
Read moreThe C++11 enable_shared_from_this is a class template which has the member function shared_from_this(). The purpose of this member function is
Read moreTwo new keywords are added in C++11: =default =delete. These keywords help command the compiler to either generate a function
Read moreA new type of enumeration known as C++11 scoped enumeration is introduced. This type of enumeration is also known as
Read moreThe C++11 allocator_traits is a class template that provide features to handle the allocator class object (if you don’t know
Read moreThe C++11 allocator class what is its purpose? how is it a better way to allocate memory? we will answer
Read moreHere we will see the C++ allocator class member functions. The meber functions are listed below. Link :C++11 allocator class
Read moreThe C++11 bad weak pointer(or bad_weak_ptr) a class thrown as an exception by the shared_ptr, why is it call bad_weak_ptr?
Read moreThe constructors of the smart pointers: shared_ptr and unique_ptr are made explicit. Here we will see 3 points why shared_ptr
Read moreThe C++11 unique pointer (or unique_ptr) that we are about to discuss here does exhibit some of the properties of
Read more