The hidden rules of world-class C++ code - Boris Schäling
Learn from Boris Schäling on how to implement the factory pattern in Modern C++:
The hidden rules of world-class C++ code
by Boris Schäling
June 16-21, Sofia, Bulgaria
September 13-19, Aurora, CO, USA
October 25, Pavia, Italy
November 6-8, Berlin, Germany
November 16-21, Kona, HI, USA
By Meeting C++ | Feb 27, 2018 07:26 AM | Tags: meetingcpp intermediate boost advanced
Learn from Boris Schäling on how to implement the factory pattern in Modern C++:
The hidden rules of world-class C++ code
by Boris Schäling
By shreck | Feb 27, 2018 01:45 AM | Tags: None
C++ initialization is tricky. Check out Abseil's C++ Tips on initialization, which we've published over the past two weeks:
From Tip of the Week #142:
"Prior to C++11, theexplicit
keyword was meaningful only for constructors that could be called with a single argument, and our style guide required its use for such constructors so that they did not act as 'converting constructors.' That requirement was not applied for multi-parameter constructors. Indeed the style guide used to discourage use ofexplicit
for multi-parameter constructors as it had no meaning. That’s no longer the case."
By Blog Staff | Feb 26, 2018 11:47 AM | Tags: None
Today the Standard C++ Foundation opened its first-ever global C++ developer survey. As the name suggests, it's a one-pager:
C++ Developer Survey "Lite": 2018-02
Please take 10 minutes or so to participate! A summary of the results, including aggregated highlights of common answers in the write-in responses, will be posted publicly here on isocpp.org and shared with the C++ standardization committee to help inform C++ evolution.
If this one is successful we plan to do it again, perhaps annually or quarterly.
Thank you for participating and helping to inform our committee and community.
By Meeting C++ | Feb 26, 2018 08:24 AM | Tags: meetingcpp intermediate
Klaus Iglberger tries to convince you of giving free functions a try:
Free your functions!
by Klaus Iglberger
By Ansel Sermersheim | Feb 25, 2018 09:12 AM | Tags: None
New videos on the CopperSpice YouTube Channel:
C++ Undefined Behavior
by Barbara Geller and Ansel Sermersheim
About the video:
A look at the topic of Undefined Behavior in C++. We discuss what UB is, what can happen when your program experiences UB, and how to avoid it.
Please take a look and remember to subscribe!
By Pawel Kurdybacha | Feb 25, 2018 09:11 AM | Tags: None
The gory details of an C++ exception handling implementation.
C++ Exception Handling Implementation
by Peter Edwards
Abstract:
Modern implementations of exception handling make the facility almost cost free for those times you don't actually end up throwing an exception. There's a big complexity cost to this, and a lot of work that happens when we step off the happy path. This presentation rolls up its sleeves and looks at what actually happens when you throw an std::exception() on modern Linux systems.
By Meeting C++ | Feb 25, 2018 06:53 AM | Tags: meetingcpp functional fp
A talk on Value semantics and functional programming
The most valuable values
by Juanpe Bolívar
By robwirving | Feb 23, 2018 09:39 AM | Tags: None
Episode 139 of CppCast the only podcast for C++ developers by C++ developers. In this episode Rob and Jason are joined by Conor Hoekstra to discuss Competive Coding websites and competitions.
CppCast Episode 139: Competitive Coding with Conor Hoekstra
by Rob Irving and Jason Turner
About the interviewee:
Conor Hoekstra works at Moody's Analytics as a C++ Software Developer helping maintain and develop an insurance software program called AXIS. Wanting to develop better algorithm and data structure knowledge he started using online sites like HackerRank and LeetCode to do so. He now has a YouTube channel where he reviews the contests from the last week of Competitive Coding sites like HackerRank, LeetCode, topcoder and Codeforces) and also covers solutions to the trickier problems.
By Meeting C++ | Feb 23, 2018 07:39 AM | Tags: meetingcpp intermediate
Kevlin Henney giving a talk at Meeting C++ 2017!
Declarative thinking, declarative practice
by Kevlin Henney
By Corentin Jabot | Feb 22, 2018 11:34 PM | Tags: None
A reply to Guy Davidson’s article “Batteries not included: what should go in the C++ standard library?”.
A cake for your cherry: what should go in the C++ standard library?
by Corentin Jabot
From the article
Over the past few years there has been a push to include a graphics library into the C++ standard. It would be something a bit like cairo. Or SDL.
I do think this is a path that should not be pursued. Let me tell you why...