JohnMcG

2,922
reputation
207 views

Registered User

name JohnMcG
member for 1 year
seen yesterday
website
location US
age 34
Developer mostly in C++
1d
awarded  Nice Question
1d
comment Simulating low memory using C++
Preferably pointers to huge blocks of allocated memory...
Dec
15
awarded  Popular Question
Nov
12
answered C++ std::string and NULL const char*
Nov
12
answered Const correctness for value parameters
Nov
11
answered Removing macro in legacy code
Nov
2
answered What are the differences between using array offsets vs pointer incrementation?
Nov
2
comment What are the differences between using array offsets vs pointer incrementation?
I would fail a candidate (well maybe not fail, but discount) for going with the pointer offset for valuing microoptimization over clarity.
Oct
16
accepted If I store a member as an object, will I incur an object copy during constuction?
Oct
13
revised How do I escape the const_iterator trap when passing a const container reference as a parameter
Correcter per comments
Oct
13
comment How do I escape the const_iterator trap when passing a const container reference as a parameter
Thinking about it some more, I think the Meyers example was a public method returning a reference to a private variable.
Oct
13
comment How do I escape the const_iterator trap when passing a const container reference as a parameter
You're right -- I seem to remember a Meyers example similar to this. I'll check it out and edit.
Oct
12
answered How do I escape the const_iterator trap when passing a const container reference as a parameter
Sep
19
answered Parameter choice for copy constructor
Sep
15
comment If I store a member as an object, will I incur an object copy during constuction?
I was imagining your constructor would then make a copy of the Doorknob passed into it -- than the only copy is the one you need.
Sep
9
asked Teaching a course with almost all lab time
Sep
9
accepted implementing operator== when using inheritance
Sep
4
revised Any reason to replace while(condition) with for(;condition;) in C++?
Changed "use" to "want to change"
Sep
4
answered Any reason to replace while(condition) with for(;condition;) in C++?
Sep
4
revised If I store a member as an object, will I incur an object copy during constuction?
Added introduction
Sep
3
answered If I store a member as an object, will I incur an object copy during constuction?
Aug
28
answered Why STL containers are preferred over MFC containers?
Aug
18
comment How to find (and replace) all old C-style data type casts in my C++ source code?
This very problem, where the user can't find the casts in his code, is one reason to favor the C++ style casts.
Aug
18
awarded  Yearling
Aug
13
answered C++ constructor syntax question (noob)
Aug
13
answered Reason why not to have a DELETE macro for c++
Jul
28
comment Is downcasting this during construction safe?
This raises the question of what value class D is adding, if B is always a D.
Jul
25
asked How can I set up a JDBC connection to an OpenOffice Database odb file?
Jul
17
comment How do use a std::auto_ptr in a class you have to copy construct?
Your implementation will work, and I think I was incorrect about the implicitly generated part. What I was disagreeing with was the first sentence that you can't use const references in a copy constructor with aut_ptr's. You can, you just have to have them do something different than the default behavior.
Jul
17
answered How do use a std::auto_ptr in a class you have to copy construct?
Jul
17
comment How do use a std::auto_ptr in a class you have to copy construct?
Sure you can use them; you just have to override the implcit copy constructor and assignment operator.
Jul
17
answered How do use a std::auto_ptr in a class you have to copy construct?
Jul
16
answered Reading/Understanding third-party code
Jul
15
awarded  Nice Answer
Jun
29
comment What are practical uses of a protected constructor?
The canonical way to indicate a class is abstract is to make the destructor pure virtual. But I tend to make the constructors protected as well, both for "belt and suspenders" protection, and to make it clear to clients they cannot directly instantiate an object of the class.
Jun
23
answered Is there a way to scan for when people forget to call the base class version of a virtual?