March 2023 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 -
Recent Posts
Recent Comments
- David Brown on Personal rights and the Internet of Things
- Peter Meyer on Personal rights and the Internet of Things
- Dean Swan on A tragedy of epic proportions
- Peter Meyer on A tragedy of epic proportions
- David Brown on A tragedy of epic proportions
Archives
- September 2020
- August 2020
- July 2020
- May 2020
- October 2019
- September 2019
- July 2019
- April 2019
- February 2019
- January 2019
- November 2018
- October 2018
- July 2018
- June 2018
- February 2018
- January 2018
- December 2017
- October 2017
- September 2017
- August 2017
- May 2017
- April 2017
- March 2017
- November 2016
- September 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- June 2015
- May 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
Tag Archives: Effective C++
Is fast evaluation really fast?
I have found over the years that readability of code has substantial value. I have also found that their are trade offs with respect to style and performance. This leads me to today’s topic that is something common to both … Continue reading
Posted in General
Tagged C++, C++ programming, coding guidelines, Effective C++, java, Reliable C++, software development
Leave a comment
“Effective C++” : Part 7
It’s been a while since my last post on C++ and I have been immersed in Java as of late. Some of the points today actually apply to languages other than C++ as Scott presents sound arguments for all objected … Continue reading
Posted in General
Tagged C++, C++ programming, coding guidelines, Effective C++, Reliable C++
Leave a comment
“Effective C++” : Part 6
It’s time for another in the series of posts on effective C++. The nice part of these posts is that writing about the points forces me to learn about them and understand them well enough to summarize them for others. … Continue reading
Posted in General
Tagged C++, C++ programming, coding guidelines, Effective C++, Reliable C++
Leave a comment
“Effective C++” : Part 5
In this next section we will look at C++ interfaces. With any programming problem we must first understand the use cases and the problem. Once we have a handle on what we are trying to accomplish we need to define … Continue reading
Posted in General
Tagged C++, C++ programming, coding guidelines, Effective C++, Reliable C++
Leave a comment
“Effective C++” : Part 4
With this post I consider the next four tips from Scott Meyer’s book on effective C++. This post brings us to the end of chapter 3 in the book which is dedicated to resource management. Resources in C++ are much … Continue reading
Posted in General
Tagged C++, C++ programming, coding guidelines, Effective C++, Reliable C++
Leave a comment
“Effective C++” : Part 3
With this post I circle back to the next four tips from Scott Meyer’s book on effective C++. This post brings us to the end of chapter 2 in the book. These next four tips are not as obscure as … Continue reading
Posted in General
Tagged C++, C++ programming, coding guidelines, Effective C++, Reliable C++
Leave a comment
“Effective C++” : Part 2
In this post I bring you back to Scott Meyers book on effective C++ programming. We will consider the next four tips and hopefully add them to our programming arsenal. What follows is my take on the next four tips: … Continue reading
Posted in General
Tagged C++, C++ programming, coding guidelines, Effective C++, Reliable C++
2 Comments
“Effective C++” : Part 1
Effective C++ is a book published by Scott Meyers that is currently in its third edition. The first time I heard of the book was when I toured a gaming company in London Ontario. The company in question, purchases a … Continue reading
Posted in General
Tagged C++, C++ programming, coding guidelines, Effective C++, Reliable C++
Leave a comment