Click here to Skip to main content
15,879,095 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 

5 Mar 2024 by PJ Arends
An MFC CWnd derived grid of user definable tiles
25 Apr 2023 by Shao Voon Wong
Bring your animations to H264/HEVC video using C++ and C# with h/w acceleration
30 Mar 2023 by Piotr Grygorczuk
Enable C++11 multithreading features in GCC for FreeRTOS
26 Oct 2022 by Shao Voon Wong
H264/HEVC Video Encoder for recording OpenGL rendering
16 Oct 2022 by Shao Voon Wong
C++11 Range For-Loop to Enumerate Registry, Folder and WMI
27 Jun 2022 by Shao Voon Wong
Example of making HTTP REST Request in C++
30 Mar 2021 by AlexeyAB
Smart pointer that makes any object thread-safe for any operations, with the performance equal to that of optimized lock-free containers
23 Mar 2021 by honey the codewitch
Make your code more efficient by hacking your compiler to improve its optimization capabilities
14 Dec 2020 by honey the codewitch
Some C++ magic to help cut down on heap abuse for simple scenarios
12 Nov 2020 by Miroslav Fidler
...but I will tell you anyway.
13 Sep 2020 by David Lafreniere
Create a worker thread with an event loop, message queue and a timer using the C++11 thread support library
10 Aug 2020 by Shao Voon Wong
Optimizations that you have to make to wring the performance out of WebAssembly
7 May 2020 by Arthur V. Ratz
In this article I will thoroughly discuss about the several aspects of using the revolutionary new Intel® oneAPI HPC Toolkit to deliver a modern code that implements a parallel “stable” sort
6 May 2020 by Arthur V. Ratz
In this article, I’d like to introduce the modern code in C++11, implementing the parallel three-way quicksort, which is asymptotically faster and more efficient than the famous heapsort and mergesort algorithms.
24 Apr 2020 by Member 4201813
Jump forward/backward procedures for XorShift RNG explained step by step
14 Apr 2020 by Member 4201813
Jump forward/backward procedures for XorShift RNG explained step by step
9 Feb 2020 by Michael Chourdakis
Copy your objects only when needed
12 Jan 2020 by Shao Voon Wong
Floating Point Format For C++ and C# Programmers
3 Jan 2020 by goranorsander
A class template for specializing fundamental types
23 Oct 2019 by David Lafreniere
A framework combining state machines with asynchronous multicast delegates
10 Oct 2019 by 10xlearner
This is a post about my first open source contribution.
22 Sep 2019 by Rodrigo Cesar de Freitas Dias
Introducing WinLamb, a modern C++11 object-oriented library to write native Windows programs
21 Sep 2019 by Lakamraju Raghuram
A glance at the C++11 Standard, covering features supported in VS2010
19 Aug 2019 by VISWESWARAN1998
An opensource antivirus engine which uses Yara, Locality Sensitive Hashing to detect malware
1 Aug 2019 by Michael Haephrati
A tiny Command Line Interface wrapped with a Graphic User Interface
30 Jul 2019 by Shao Voon Wong
Run your C++ Graphics on the Desktop and Web
21 Jul 2019 by Shao Voon Wong
Bring your existing WPF and Winform application to the Microsoft Store
13 Jul 2019 by Michael Chourdakis
An easy locking class for shared/exclusive mutex functions with upgrade/downgrade
28 Jun 2019 by Shao Voon Wong
How to bring your C++ code to the web
16 Jun 2019 by Michael Chourdakis
Create dynamic multidimensional arrays in place
12 Jun 2019 by John Bandela
The problem brought to light by the article is that C++11 auto interacts badly with expression templates and proxies.
15 Apr 2019 by Michael Chourdakis
Use Windows new ThreadPool through a single C++ 11 class
3 Mar 2019 by MehreenTahir
This article is a continuation of Programming Concurrency in C++ Part 1. We will discuss synchronization, future and promises along with async and with that, will sum up the introduction of concurrency in C++.
30 Dec 2018 by Arthur V. Ratz
SVD in C++11 explained with an example
16 Dec 2018 by MehreenTahir
This article will help you get started with concurrency and will also introduce you to the features C++ has to support concurrent programming.
13 Dec 2018 by Michael Chourdakis
A mutex with shared/exclusive access with upgrade/downgrade capability
8 Dec 2018 by CalicoSkies
Mixing audio from multiple WAV files to a single WAV file. Includes a C++ class for reading and writing WAV audio files, derived from an AudioFile class for future support of other audio file formats.
23 Nov 2018 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.
4 Nov 2018 by Michael Chourdakis
A ready to be used hotpatching library with five methods!
3 Sep 2018 by Michael Chourdakis
The update to my beloved library. Single-header file.
13 Aug 2018 by Shmuel Zang
This article shows how we can implement a thread-safe events (similar to .NET events) mechanism using the standard C++ library.
24 Jul 2018 by stevemk14ebr
PolyHook v2 - the C++17 x86/x64 library supporting multiple methods of hooking
17 Jun 2018 by Lakamraju Raghuram
A glance at the C++11 Standard, covering features supported in VS2010. This is the next part of this series.
5 Jun 2018 by Shao Voon Wong
Implementing string_view conversion to integral types using Boost Spirit Qi v2
23 May 2018 by John M. Dlugosz
It is easier than ever to exploit the range-for loop (and make use of std algorithms) for things other than collections.
28 Mar 2018 by Paulo Zemek
A beginner article about how to write a simple list class in C# and in C++
25 Feb 2018 by Petrov Vladimir
Weiler-Atherton algorithm in MFC codes demo implementation
30 Jan 2018 by Bartlomiej Filipek
It appears that in some cases memory allocated for the object controlled by smart_ptr might not be released until all weak pointers are also ‘dead’... let's see why
12 Jan 2018 by Michael Haephrati
How to easily integrate and interface with PayPal Express Checkout API from a Windows c++ application
5 Jan 2018 by Michael Chourdakis
The most appealing (to me!) new C++ features
4 Jan 2018 by john morrison leon
Class method emulation for plain arrays plus unified handling of plain arrays, std::arrays and std::vectors
27 Dec 2017 by Petrov Vladimir
Simple solution for small avi demo performance from Image files of any kind
29 Jun 2017 by EgorYusov
This article describes an efficient thread-safe reference counting system.
24 May 2017 by john morrison leon
Type quantities according to the units in which they are measured. A complete implementation of units of measurement as a data type for C++ 11.
5 Apr 2017 by Shao Voon Wong
Compute Concurrent Permutations and Combinations on CPU
9 Dec 2016 by Arthur V. Ratz
In this article, we'll demonstrate an approach the allows to increase the performance (up to 600%) of the code that implements the conventional distribution counting algorithm (DCA) using NVIDIA CUDA 8.0 Runtime API
11 Nov 2016 by HoshiKata
An example state machine framework that uses Doxygen to auto-draw the actual code's behavior.
1 Oct 2016 by Shao Voon Wong
Using C++11 thread_local to Avoid Allocation, Sharing and Minimize Locking
28 Jun 2016 by Mohamed Kalmoua
This article describes how to create a UWP application that uses a Window Runtime Component.
26 Jun 2016 by bishopnator29a
Saving, Loading and data migration in compact library
25 May 2016 by Shvetsov Evgeniy
Numbers (positive AND negative integral/fractional) to english/russian words
19 May 2016 by Noah L
Use-after-free bugs, new smart pointers and the new state of safe C++ programming
17 May 2016 by stevemk14ebr
A modern, universal, c++ hooking library.
1 May 2016 by itsdkg
A demonstration of how to use C++11/C++14 lambdas / Closures
24 Apr 2016 by Michael Chourdakis
A class to implement a reverse semaphore
23 Apr 2016 by Florian Rappl
In this article we look behind the development of a Top 500 listed highly-efficient supercomputer: the QPACE 2.
12 Apr 2016 by Shao Voon Wong
Debug Print using C++11 Variadic Template
20 Mar 2016 by Noah L
An introduction to new smart pointers meant to be safe replacements for raw pointers and (raw) references.
15 Mar 2016 by Satbir S
A worker thread gives you parallel processing power
14 Mar 2016 by Larz White
C++ continuous integration setup using Travis CI, AppVeyor, CMake, and the Boost Test Library
1 Mar 2016 by Evgeny Zavalkovsky
`Memoization' of a computation result makes computation faster by trading space for time. Here you will see extremely simple and "easy to use" Memoization Infrastructure.
29 Feb 2016 by Bartlomiej Filipek
In the article I cover SFINAE, a quite complex paradigm from C++ template programming area. What is this thing? Where can you use it? Let's also look how C++14/17 can help in writing such expressions.
21 Feb 2016 by Shvetsov Evgeniy
String class with the auto. managed memory pool and performance tweaks + support modules
15 Feb 2016 by Alasdair Craig
Common ways that code gets duplicated, and techniques for avoiding or refactoring the duplication
2 Feb 2016 by Md. Samiul Hoque
intros_ptree: A library that lets you populate your structure or class from XML file (or json or ini file) automatically, and vice versa
29 Jan 2016 by Md. Samiul Hoque
intros_ptree: A library that lets you populate your structure or class from XML file (or json or ini file) automatically, and vice versa
6 Dec 2015 by Michael Chourdakis
Load an EXE file as a DLL in another EXE and execute the functions
23 Oct 2015 by Michael Chourdakis
A simple template for manipulating the registry
23 Sep 2015 by Shvetsov Evgeniy
Safe and versatile iterator for user types
18 Sep 2015 by john morrison leon
observer_ptr, a smart observer guaranteed to always be either valid or test as null. Transparently harnessing unique_ptr's custom deleter feature to detect object destruction.
27 Jul 2015 by Manuele Finocchiaro
Reflection for C++ made easy
15 Jul 2015 by Michael Chourdakis
Smart pointers for some Windows handles
10 Jul 2015 by darrellp
A framework for easily solving programming challenges from competitive coding sites
5 May 2015 by Mikhail Semenov
Essential features in Visual C++ 11 and GCC 4.7.0: move, rvalue references, prvalues, xvalues, perfect forwarding.
13 Apr 2015 by Anton Chibisov
This tutorial showcases how to implement C++ delegates which are capable of being bound to methods and functions having arbitrary signature, i.e., any number and type of parameters and return value.
23 Mar 2015 by Mikhail Semenov
This articles proposes an implementation of a collection of constructs for writing loops in C++11, as an alternative to the standard C-style for-loop.
18 Jan 2015 by Mikhail Semenov
This article covers algorithms and implementations for maps with integers, contains benchmark results
3 Jan 2015 by Mikhail Semenov
This article covers algorithms and implementations for sparse sets of integers, including the benchmark results.
31 Dec 2014 by KjellKod.cc
How to make a wait-free, lock-free CircularFifo using C++11.
30 Dec 2014 by Babu_Abdulsalam
Various features supporting Concurrency in C++11
28 Dec 2014 by Michael Gazonda
Have you ever been working with templates or constexpr and wanted to run a loop? Or maybe you have a loop you'd like to unroll and see if your program will run faster? Welcome to static_for.
16 Dec 2014 by Bartlomiej Filipek
Several examples of beautiful code made up of algorithms from the C++ standard library. Heavily uses modern C++.
27 Aug 2014 by Bartlomiej Filipek
Several issues related to smart pointers that are worth knowing.
20 Aug 2014 by Evgeny Zavalkovsky
Multi-reader lock that provides real readers' lock-free and wait-free concurency on multi core systems.
31 Jul 2014 by Michael Gazonda
A Fundamental Lock-Free Building Block - The Lock-Free Stack
25 Jul 2014 by Nish Nishant
The article goes through sevean language and IDE features in the VS 14 CTP 2 that are specific to C++ development
10 Jun 2014 by Evgeny Zavalkovsky
SW Message Bus represents message flow abstraction mechanism in a complex, multithreaded SW system.
3 Jun 2014 by Mikhail Semenov
Defining ranges with steps that can be used in for-loops
12 May 2014 by Anna Koneva
An article about interoperation issues in mixed C/C++/Objective-C development