Tag for implementing and understanding guidelines and recommendations in the book "Effective C++: 50 Specific Ways to Improve Your Programs and Designs" by Scott Meyers.

learn more… | top users | synonyms

0
votes
5answers
80 views

How to avoid returning handles to object internals - Item 28 Effective C++

Item 28 of Effective C++ says avoid returning "handles" to object internals. This question shows how to design your code to do exactly that by thinking about encapsulation in order to avoid ...
1
vote
2answers
68 views

Function-like macros and strange behavior

I have started reading Effective C++ and at some point in item 2, the following is mentioned: // call f with the maximum of a and b #define CALL_WITH_MAX(a, b) f((a) > (b) ? (a) : (b)) ... int a ...
10
votes
6answers
298 views

“Avoid returning handles to object internals”, so what's the alternative?

Effective C++ by Scott Meyers tells in Chapter 5, Item 28 to avoid returning "handles" (pointers, references or iterators) to object internals and it definitely makes a good point. I.e. don't do ...
2
votes
2answers
188 views

Effective c++ item 3 example

My question is about a specific item (3) of the book "effective c++". The book gives this exemple that I tried to reproduce as close as possible into vsc++ (including iostream and string): class ...
6
votes
4answers
239 views

Template in C++, why have to use enum

I have a quick question about item 48 in Scott Meyers' "Effective C++". I just don't understand the code copied from the book below, #include <iostream> using namespace std; ...
4
votes
5answers
147 views

Confused about reference counting

Thanks for helping in advance. I am reading the book More Effective C++ by Scott Meyers, but one simple program in Item 29 "Reference Counting" really confuses me. The program is copied here: ...
0
votes
1answer
85 views

preventing a construction of multiple objects

I'm reading Effective C++, so I tried to implement the class that prevents construction of multiple objects (Item 4): #include <iostream> using namespace std; class testType { public: ...
3
votes
3answers
565 views

Can I rewrite a logging macro with stream operators to use a C++ template function?

Our project uses a macro to make logging easy and simple in one-line statements, like so: DEBUG_LOG(TRACE_LOG_LEVEL, "The X value = " << x << ", pointer = " << *x); The macro ...
5
votes
4answers
398 views

Why does static_cast(*this) to a base class create a temporary copy?

I'm reading Effective C++ and came across this example: class Window { // base class public: virtual void onResize() { ... } // base onResize impl ... ...
2
votes
3answers
2k views

Why does one need a null shared_ptr and how can it be used?

In Scott Meyers's Effective C++, item 18 Make interfaces easy to use correctly and hard to use incorrectly, he mentioned the null shared_ptr: std::tr1::shared_ptr<Investment> ...
17
votes
5answers
1k views

Effective C++: discouraging protected inheritance?

I was reading Scott Meyers' Effective C++ (third edition), and in a paragraph in Item 32: Make sure public inheritance is "is-a" on page 151 he makes the comment (which I've put in bold): This is ...
11
votes
2answers
514 views

Effective C++ “35. Minimize compilation dependencies between files”. Is it still valid today?

In this chapter Scott Meyer mentioned a few technique to avoid header files dependency. The main goal is to avoid recompiling a cpp file if changes are limited to other included header files. My ...
0
votes
1answer
574 views

calling of operator = from within derived class

This is from the item 16 of effective C++ 2nd edition scott meyers (page 70) Author writes without much explanation that when base class operator = is called in the following fashion ...
5
votes
4answers
663 views

Forward declaration include, on top of declaration include (ClassFwd.h + Class.h)

In Effective C++ (3rd edition), Scott Meyers, in Item 31, suggests that classes should have, on top of their classic Declaration (.h) and Definition (.cpp) files, a Forward Declaration Include File ...
5
votes
4answers
2k views

About downcasting from base class to subclass pointer

A static check tool shows a violation on the below code: class CSplitFrame : public CFrameWnd ... class CVsApp : public CWinApp CWnd* CVsApp::GetSheetView(LPCSTR WindowText) { ...
2
votes
5answers
301 views

C++: using const with STL iterators

From Effective C++, Item 3 /* case1 */ const std::vector<int>::iterator i // i acts like a T* const /* case2 */ std::vector<int>::const_iterator ci // ci acts like a const T* To ...
2
votes
1answer
369 views

Equivalent to Scott Meyer's Effective C++ for C#? [closed]

When I started out, Scott Meyer's Effective C++ really helped me grok a lot of foreign concepts. I'm now trying to mentor a junior programmer, except he's using C#. Is there a good equivalent to ...
2
votes
4answers
1k views

Is it appropriate to set a value to a “const char *” in the header file

I have seen people using 2 methods to declare and define char * Medhod-1: The header file has the below extern const char* COUNTRY_NAME_USA = "USA"; Medhod-2: The header file ...
5
votes
10answers
893 views

Interview question; what is the main theme of Effective C++? [closed]

I was asked the following question at a recent job interview: What do you think is the main theme / single word that sums up the Effective C++ series from Scott Meyers? What would be your answer ...
7
votes
4answers
2k views

Effective C++: Which edition to purchase?

I would like to purchase a copy of Effective C++, but I've hit on in issue. The first edition goes for about $4 used on Amazon, which is awesome. The second edition is about ten times as much. Could ...
6
votes
3answers
2k views

Modern effective C++ books [closed]

Can you give me advice for a modern book(s) for Effective C++ Programming By modern I mean that I want it to include new features from Boost C++ Library (casts, smart pointers, etc.) I have these ...
1
vote
1answer
2k views

Silencing GCC warnings when using an “Uncopyable” class

I have several classes that I don't want to be copyable, some of these classes have pointer data members. To make these classes uncopyable I privately inherit the following class template: template ...