Click here to Skip to main content
15,890,438 members
Everything / Programming Languages / C++11

C++11

C++11

Great Reads

by Shao Voon Wong
Floating Point Format For C++ and C# Programmers
by Michael Chourdakis
An easy locking class for shared/exclusive mutex functions with upgrade/downgrade
by MehreenTahir
This article will show you an alternative way of using C++; How to write functional code in C++. You’ll see how to write more concise, safer, readable, reasonable code.
by Shmuel Zang
This article shows how we can implement a thread-safe events (similar to .NET events) mechanism using the standard C++ library.

Latest Articles

by PJ Arends
An MFC CWnd derived grid of user definable tiles
by Shao Voon Wong
Bring your animations to H264/HEVC video using C++ and C# with h/w acceleration
by Piotr Grygorczuk
Enable C++11 multithreading features in GCC for FreeRTOS
by Shao Voon Wong
H264/HEVC Video Encoder for recording OpenGL rendering

All Articles

Sort by Updated

C++11 

23 Jan 2020 by 10xlearner
Memory Management, more specifically in C++
17 May 2018 by John M. Dlugosz
“Know your libraries!” You may already have the code you need.
21 Jun 2015 by Paul M Watt
Rvalue references were introduced with C++11, and they are used to implement move semantics and perfect-forwarding. Both of these techniques are ways to eliminate copies of data parameters for efficiency. There is much confusion around this new feature that uses the && operator, because its meaning
22 Feb 2015 by Bartlomiej Filipek
My short summary for non static data members initialization from modern C++. A very useful feature.
25 Oct 2014 by Bartlomiej Filipek
A list of my top 5 interesting C++ proposals.for pre-Urbana mailing. Unified Syntax Call, Coroutines, array_view ranges and modules.
2 Sep 2014 by BrainlessLabs.com
C++11 Constructors and Copy Assignment – Part 2
2 Jun 2014 by Bartlomiej Filipek
How memory access patterns can influence performance of your code