User JohnMcG - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:44:54Z http://stackoverflow.com/feeds/user/1674 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1724186/c-stdstring-and-null-const-char/1724517#1724517 1 Answer by JohnMcG for C++ std::string and NULL const char* JohnMcG 2009-11-12T18:54:49Z 2009-11-12T18:54:49Z <p>You could wrap all your calls to C-stlye functions in something like this...</p> <pre><code>std::string makeCppString(const char* cStr) { return cStr ? std::string(cStr) : std::string(""); } </code></pre> <p>Then wherever you have:</p> <pre><code>std::string imacppstring = somecstylefunction(); </code></pre> <p>replace it with:</p> <pre><code>std::string imacppstring = makeCppString(somecystylefunction); </code></pre> <p>Of course, this assumes that returning an empty string is acceptable behavior when your function returns NULL.</p> http://stackoverflow.com/questions/1724051/const-correctness-for-value-parameters/1724492#1724492 0 Answer by JohnMcG for Const correctness for value parameters JohnMcG 2009-11-12T18:50:12Z 2009-11-12T18:50:12Z <p>I think this is dependent on your personal style.</p> <p>It doesn't add or subtract to what clients can pass to your function. In essence it's like a compile-time assertion. If it helps you to know that value won't change, go ahead and do it, but I don't see a big reason for others to do it.</p> <p>One reason I might not do it is that the const-ness of the value parameter is an implementation detail that your clients don't need to know about. If you later (purposely) change your function so that it actually does change that value, you will need to change the signature of your function, which will force your clients to re-compile.</p> <p>This is similar to why some people recommend having no public virtual methods (the functions virtual-ness is an implementation detail that should be hidden from clients), but I'm not in that particular camp.</p> http://stackoverflow.com/questions/1718346/removing-macro-in-legacy-code/1718475#1718475 1 Answer by JohnMcG for Removing macro in legacy code JohnMcG 2009-11-11T22:20:54Z 2009-11-11T22:20:54Z <p>What you need is a function that relies on a variable being defined. The only way to do that is to declare that variable in the same scope as the function. But then your function would use that one instead of the one declared from where your function is called. </p> <p>So I'm fairly confident it can't be done.</p> http://stackoverflow.com/questions/1663094/what-are-the-differences-between-using-array-offsets-vs-pointer-incrementation/1663210#1663210 1 Answer by JohnMcG for What are the differences between using array offsets vs pointer incrementation? JohnMcG 2009-11-02T19:36:04Z 2009-11-02T19:36:04Z <p>You're asking the wrong question. <a href="http://stackoverflow.com/questions/183201/should-a-developer-aim-for-readability-or-performance-first">http://stackoverflow.com/questions/183201/should-a-developer-aim-for-readability-or-performance-first</a></p> <p>The first version is idiomatic for processing array, and your intent will be clear to anyone who has worked with arrays before, whereas the second relies heavily on the equivalence between array names and pointers, forcing someone reading the code to switch metaphors several times. </p> <p><em>Cue the comments saying that the second version is crystal clear to any developer worth his keybaord.</em></p> <p>If you wrote your program, and it's running slow, and you have profiled to the point where you have identified this loop as the bottleneck, <em>then</em> it would make sense to pop the hood and look at which of these is faster. But get something clear up and running first using well-known idiomatic language constructs.</p> http://stackoverflow.com/questions/188537/is-a-support-position-a-career-dead-end 4 Is a "support" position a career dead end? JohnMcG 2008-10-09T18:23:14Z 2009-10-21T14:53:47Z <p>Our organization recently separated support and development, and it looks like I've landed on the "support" side, since the application I work on has been in production for some time, even though there are many enhancements planned for it. Our team also likely be taking over support for some other applications.</p> <p>I am concerned that remaining in a position on the "support" side would be detrimental to my career (though probably less so than being a big crybaby about it). </p> <p>As you can probably tell, I much prefer building software to supporting existing software, though I am capable of filling either position.</p> <p>I'm aware of pat sayings like, "Any job is what you make of it," etc. I'm curious if others have faced a similar situation, and what the results were.</p> http://stackoverflow.com/questions/1557352/how-do-i-escape-the-constiterator-trap-when-passing-a-const-container-reference/1557504#1557504 5 Answer by JohnMcG for How do I escape the const_iterator trap when passing a const container reference as a parameter JohnMcG 2009-10-12T23:30:34Z 2009-10-13T13:05:02Z <p>It's not a trap; it's a feature. (:-)</p> <p>In general, you can't return a non-const "handle" to your data from a const method. For example, the following code is illegal.</p> <pre><code>class Foo { public: int&amp; getX() const {return x;} private: int x; }; </code></pre> <p>If it were legal, then you could do something like this....</p> <pre><code> int main() { const Foo f; f.getX() = 3; // changed value of const object } </code></pre> <p>The designers of STL followed this convention with const-iterators.</p> <p><hr /></p> <p>In your case, what the const would buy you is the ability to call it on const collections. In which case, you wouldn't want the iterator returned to be modifiable. But you do want to allow it to be modifiable if the collection is non-const. So, you may want two interfaces:</p> <pre><code>MyList::const_iterator find( const MyList &amp; list, int identifier ) { // do some stuff to find identifier return retConstItor; // has to be const_iterator because list is const } MyList::iterator find( MyList &amp; list, int identifier ) { // do some stuff to find identifier return retItor; } </code></pre> <p>Or, you can do it all with one template function</p> <pre><code>template&lt;typename T&gt; T find(T start, T end, int identifier); </code></pre> <p>Then it will return a non-const iterator if the input iterators are non-const, and a const_iterator if they are const.</p> http://stackoverflow.com/questions/1447939/parameter-choice-for-copy-constructor/1448754#1448754 1 Answer by JohnMcG for Parameter choice for copy constructor JohnMcG 2009-09-19T15:19:52Z 2009-09-19T15:19:52Z <p>It's a syntactic convenience.</p> <p>The most common use cases for when a copy constructor gets called is when a parameter is passed by value, or something is returned by value.</p> <p>If the copy constructor had a parameter that was a pointer rather than a reference, you would need to apply the address-of operator in order to invoke the copy constructor, which would be awkward.</p> http://stackoverflow.com/questions/1401932/teaching-a-course-with-almost-all-lab-time 2 Teaching a course with almost all lab time JohnMcG 2009-09-09T20:34:29Z 2009-09-15T21:30:53Z <p>I am teaching two courses that are each one night a week, 6-10:30 PM. These are broken into three parts, two 1 1/2 hour, and then a final hour, with breaks in between.</p> <p>The clases are scheduled such that the first two parts are in a large lab room that we will share with two or three other classes. We are discouraged from "teaching," i.e. speaking the whole class, in that shared lab, so that we don't disturb the other classes.</p> <p>Obviously this set-up is less than optimal, especially since the one hour of teaching time is from 9:30-10:30 when the students (and I) will be tired. But I have been told it will not change.</p> <p>The courses are a Java programming course, and an object-oriented design course.</p> <p>I was curious if anyone had suggestions on how I could make a set-up like this work.</p> http://stackoverflow.com/questions/1379246/any-reason-to-replace-whilecondition-with-forcondition-in-c/1380257#1380257 4 Answer by JohnMcG for Any reason to replace while(condition) with for(;condition;) in C++? JohnMcG 2009-09-04T16:22:19Z 2009-09-04T18:09:01Z <blockquote> <p>Is there any reason to use the latter instead of the former?</p> </blockquote> <ol> <li>A misguided effort to impress your colleagues that you know that those two forms are equivalent.</li> <li>A foolish maneuver to ensure "job security" by making your code as confusing as possible so that no one will ever want to change it.</li> <li>The "w" key on your keyboard is broken.</li> <li>It started life as a for loop with initializers and incrementing condition, and when the logic changed, the developer was too busy to change it.</li> </ol> http://stackoverflow.com/questions/1375854/if-i-store-a-member-as-an-object-will-i-incur-an-object-copy-during-constuction/1376148#1376148 2 Answer by JohnMcG for If I store a member as an object, will I incur an object copy during constuction? JohnMcG 2009-09-03T21:48:41Z 2009-09-04T13:55:12Z <p>More important than minimizing the number of copy constructor calls is that your code correctly models the problem space.</p> <p>Door owns the doorknob; i.e. the lifecycle of DoorKnob is the same as that of Door. Thus, Door should manage the lifecycle of Doorknob.</p> <p>The second solution is not be preferred for that reason. You are relying on the client to manufacture the Doorknob object, which you then store a pointer to, which is a violation of <a href="http://en.wikipedia.org/wiki/Resource%5FAcquisition%5FIs%5FInitialization" rel="nofollow">RAII</a>.</p> <p>Your first solution is acceptable, but as you note, as the problem of making an unnecessary copy of the Doorknob object, since copies as a parameter.</p> <p>The ideal solution is to have contructor take in a reference, as @pingw33n's solution does. Or, since it may not make sense to construct a Doorknob outside of a door, have your Door constructor create the Door.</p> http://stackoverflow.com/questions/1348078/why-stl-containers-are-preferred-over-mfc-containers/1348878#1348878 3 Answer by JohnMcG for Why STL containers are preferred over MFC containers? JohnMcG 2009-08-28T19:26:38Z 2009-08-28T19:26:38Z <p>It is now assumed that C++ developers are at least passingly familiar with the STL. Not so for MFC containers. So if you're adding a new developer to your team, you will have an easier time finding one who know STL than the MFC containers, and thus will be able to contribute immediately.</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118883#118883 3 Answer by JohnMcG for What are Code Smells? What is the best way to correct them? JohnMcG 2008-09-23T03:07:08Z 2009-08-28T18:36:49Z <p><strong>Smell</strong>: query in a program that is either "SELECT *" or an insert without column names.</p> <p><strong>Problem</strong>: if the structure of the table changes, the code will break.</p> <p><strong>Solution</strong>: be explicit about what columns are being selected or inserted.</p> http://stackoverflow.com/questions/1272680/c-constructor-syntax-question-noob/1272710#1272710 1 Answer by JohnMcG for C++ constructor syntax question (noob) JohnMcG 2009-08-13T15:27:32Z 2009-08-13T15:27:32Z <p>That is called the <em>member initialization list</em>. It is used to call the superclass constrctors, and give your member variables an initial value at the time they are created.</p> <p>In this case, it is initializing <code>m_classID</code> to -1 and <code>m_userData</code> to NULL.</p> <p>It is not quite equivalent to assigning in the body of the constructor, because the latter first creates the member variables, then assigns to them. With the initialization, the initial value is provided at the time of creation, so in the case of complex objects, it can be more efficient.</p> http://stackoverflow.com/questions/1265666/reason-why-not-to-have-a-delete-macro-for-c/1269861#1269861 0 Answer by JohnMcG for Reason why not to have a DELETE macro for c++ JohnMcG 2009-08-13T03:23:37Z 2009-08-13T03:23:37Z <ol> <li>It doesn't give you much benefit. Deleting a null pointer is harmless, so the only benefit is setting the pointer to NULL after the delete. If a developer can remember to call your macro rather than delete, she can also remember to null out the pointer, so you're not really protecting yourself from a careless developer. The only benefits is that this happens in two lines rather than one.</li> <li>It's potentially confusing. delete is a standard part of the language. Your macro or templated function is not. So a new developer will need to look up that macro definition to understand what your code is doing.</li> </ol> <p>In my judgement, the cost does not outweigh the benefit.</p> http://stackoverflow.com/questions/1182699/how-can-i-set-up-a-jdbc-connection-to-an-openoffice-database-odb-file 0 How can I set up a JDBC connection to an OpenOffice Database odb file? JohnMcG 2009-07-25T18:35:21Z 2009-07-25T18:56:54Z <p>For instructional purposes, I want to set up a database in a Linux environment, then conenct to it using JDBC. OpenOffice looks a lot simpler thatn MySQL, but I'm not sure how to get the connection to it set up.</p> http://stackoverflow.com/questions/1142643/how-do-use-a-stdautoptr-in-a-class-you-have-to-copy-construct/1144830#1144830 0 Answer by JohnMcG for How do use a std::auto_ptr in a class you have to copy construct? JohnMcG 2009-07-17T18:04:36Z 2009-07-17T18:04:36Z <p>Given the edit, then it appears you want tranfer of ownership semantics.</p> <p>In that case, then you'll want to have your copy constructor and assignment operator accept non-const references to their arguments, and perform the initialization/assignment there.</p> http://stackoverflow.com/questions/1142643/how-do-use-a-stdautoptr-in-a-class-you-have-to-copy-construct/1144806#1144806 0 Answer by JohnMcG for How do use a std::auto_ptr in a class you have to copy construct? JohnMcG 2009-07-17T17:59:17Z 2009-07-17T17:59:17Z <p>If I have class containing an auto_ptr, and want deep-copy semantics, I generatally only do this for classes that have a virtual copy operator, i.e. clone().</p> <p>Then, within the copy constructor, I initialize the auto_ptr to a clone() of the other; e.g.</p> <pre><code>class Foo { public: Foo(const Foo&amp; rhs) : m_ptr(rhs.m_ptr-&gt;clone()); private: std::auto_ptr&lt;T&gt; m_ptr; }; </code></pre> <p>clone() is typically implemented as follows:</p> <pre><code>class T { std::auto_ptr&lt;T&gt; clone() const { return std::auto_ptr&lt;T&gt;(new T(*this)); } }; </code></pre> <p>We are imposing the condition that T is clonable, but this condition is essentially imposed by having a copiable class with an auto_ptr member.</p> http://stackoverflow.com/questions/1134931/reading-understanding-third-party-code/1138054#1138054 0 Answer by JohnMcG for Reading/Understanding third-party code JohnMcG 2009-07-16T14:35:21Z 2009-07-16T14:35:21Z <p>There really isn't a silver bullet other than just rolling up your sleeves and digging into the code. </p> <p>This is where we earn our money.</p> http://stackoverflow.com/questions/1030274/is-there-a-way-to-scan-for-when-people-forget-to-call-the-base-class-version-of-a/1032608#1032608 6 Answer by JohnMcG for Is there a way to scan for when people forget to call the base class version of a virtual? JohnMcG 2009-06-23T13:32:54Z 2009-06-23T13:32:54Z <p>Don't trust the derived classes to do it; use the <a href="http://en.wikipedia.org/wiki/Template%5Fmethod%5Fpattern" rel="nofollow" title="template method design pattern">template method design pattern</a> to ensure your base class behavior will always happen:</p> <pre><code>class Base { public: void OnUnload() { // Do stuff that must always be done. this-&gt;doOnUnload(); } private: // Virtual method for derived classes to override. // Can be pure virtual if it will always be overridden. virtual void doOnUnload() { // Empty default implementation } }; </code></pre> <p>The only problem is that this only buys you one level of inheritance, and your problem says you need two. In which case, this pattern can be repeated. </p> <p>But in general, it's usually more stable to have base classes call down to derived classes for specific behavior than to require derived classes to call up to base classes.</p> http://stackoverflow.com/questions/952907/practices-on-when-to-implement-accessors-on-private-member-variables-rather-than/953241#953241 1 Answer by JohnMcG for practices on when to implement accessors on private member variables rather than making them public JohnMcG 2009-06-04T21:34:58Z 2009-06-05T15:09:51Z <p>Make your data private in your class whenever it would be possible for an object of your class to be screwed up if a client changed that data, or you don't want clients dependent on your implementation of the class.</p> <p>Which translates to "almost always."</p> http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/920905#920905 3 Answer by JohnMcG for C++, removing #include<vector> or #include<string> in class header JohnMcG 2009-05-28T13:42:53Z 2009-05-28T13:42:53Z <p>Just include the header in any file where you reference an STL collection.</p> <p>As others have mentioned, there's not a way to reliably forward declare the STL classes, and even if you find one for your particular implementation, it will probably break if you use a different STL implementation.</p> <p>If the compilation units don't instantiate the classes, it won't make your object files any bigger.</p> http://stackoverflow.com/questions/899517/set-local-environment-variables-in-c/899687#899687 1 Answer by JohnMcG for Set local environment variables in C++ JohnMcG 2009-05-22T19:53:00Z 2009-05-22T19:53:00Z <p>I'm not positive envitonment variables is what you need, since they aren't going to be used outside of this run of the program. No need to engage the OS.</p> <p>You might be better off having a singleton class or a namespace that holds all these values, and initialize them when you start the program.</p> http://stackoverflow.com/questions/899483/constness-of-returned-objects-from-a-const-member-function/899671#899671 0 Answer by JohnMcG for constness of returned object(s) from a const member function JohnMcG 2009-05-22T19:49:31Z 2009-05-22T19:49:31Z <p>Do not return a non-const pointer or reference to member data from a const method.</p> http://stackoverflow.com/questions/898789/is-there-any-specific-case-where-pass-by-value-is-preferred-over-pass-by-const-re/898931#898931 1 Answer by JohnMcG for is there any specific case where pass-by-value is preferred over pass-by-const-reference in C++? JohnMcG 2009-05-22T17:10:33Z 2009-05-22T17:10:33Z <p>If the most straightforward implementation of the function involves modifying the parameter value locally, then it makes sense to pass it by value rather than by const reference</p> <p>For example, the one line version of strcpy:</p> <pre><code>char *strcpy(char *dest, const char *src) { while (*dest++ = *src++); return s1; } </code></pre> <p>If you took in the pointers as const references, you would need to copy them to temporaries in the body of your program, rather than letting the paramater passing mechanism do it for you.</p> http://stackoverflow.com/questions/889324/how-to-make-sure-you-have-overriden-hide-a-method-in-a-derived-class-in-c/889794#889794 0 Answer by JohnMcG for How to make sure you have overriden (hide) a method in a derived class in C++? JohnMcG 2009-05-20T19:30:51Z 2009-05-20T19:30:51Z <p>In Base::foo(), you could do the following:</p> <pre><code>assert (dynamic_cast&lt;const Derived*&gt; (this) == NULL); </code></pre> <p>But it has three problems:</p> <ol> <li>It requires a change in the Base class, which should be closed to modification.</li> <li>It may be stronger than you need, since you may want to permit Base::foo() to be called from a Base object or explicitly.</li> <li>It uses RTTI, which means a vtbl, which might be why you didn't want to user virtual functions to begin with.</li> </ol> http://stackoverflow.com/questions/871666/why-is-it-better-to-use-than-in-a-vector-loop-c/871784#871784 2 Answer by JohnMcG for Why is it better to use '!=" than '<' in a vector loop? (C++) JohnMcG 2009-05-16T05:39:04Z 2009-05-16T05:39:04Z <p>In general, I like to put code like this in a template function similar to the STL algorigthms, such that they are agnostic about what the underlying containter is.</p> <p>Since &lt; only makes sense for vectors, it would be a poor fit for a generic function. If you use &lt;, you are locking yourself into using a vector.</p> http://stackoverflow.com/questions/527999/is-it-ok-to-use-c-style-cast-for-built-in-types/529022#529022 8 Answer by JohnMcG for Is it OK to use C-style cast for built-in types? JohnMcG 2009-02-09T17:11:56Z 2009-05-07T20:02:06Z <p>I would not, for the following reasons:</p> <ul> <li>Casts are ugly and should be ugly and stand out in your code, and be findable using grep and similar tools.</li> <li>"Always use C++ casts" is a simple rule that is much more likely to be remembered and followed than, "Use C++ casts on user-defined types, but it's OK to use C-style casts on built-in types."</li> <li>C++ style casts provide more information to other developers about why the cast is neccesary.</li> <li>C-style casts may let you do conversions you didn't intend -- if you have an interface that takes in (int*) and you were using c-style casts to pass it a const int*, and the interface changes to take in a long*, your code using c-style casts will continue to work, even if it's not what you wanted.</li> </ul> http://stackoverflow.com/questions/778888/which-oo-concept-is-this-an-example-of/779310#779310 7 Answer by JohnMcG for Which OO concept is this an example of? JohnMcG 2009-04-22T21:27:22Z 2009-04-22T21:27:22Z <p>I think the diversity of the answers demonstrates that this is a poorly constructed question.</p> <p>If you put a gun to my head, I would probably choose <strong>inheritance</strong>, since this models that since Derived inherits Base, then Derived can be used where a Base is required (such as being pointed to by a Base*) but I could imagine a defense of any of the answers.</p> <p>If I were making a hiring decision, I'd be more interested in hearing how a candidate defended her chosen answer than in which one she chose. But a company using a test like this probably isn't, or doesn't have anyone on staff capable of assessing skills at that level.</p> http://stackoverflow.com/questions/746240/copy-constructors-c/747354#747354 0 Answer by JohnMcG for Copy constructors - c++ JohnMcG 2009-04-14T12:41:56Z 2009-04-14T12:41:56Z <p>The copy constructor is implicitly used in two cases:</p> <ul> <li>When an instance of your class is passed by value to a function.</li> <li>When an instance of your class is returned by value from a function.</li> </ul> <p>As others have mentioned, you can write a constructor with the signature described (or with a const pointer), but it would not be used in either of the above cases.</p> http://stackoverflow.com/questions/345201/really-though-how-can-gmail-still-be-beta 5 Really, though, how can gmail still be "beta"? JohnMcG 2008-12-05T21:26:46Z 2009-04-03T10:12:57Z <ul> <li>It's been out for almost five years.</li> <li>It's got tens of millions of users</li> <li>I suspect several businesses rely on it.</li> </ul> <p>How is it still "beta"? At what point will it no longer be beta? When it completely owns the e-mail market?</p> http://stackoverflow.com/questions/1945841/how-can-i-convert-this-exponential-no-4-34665576869374564e208-in-decimal-no Comment by JohnMcG on how can i convert this exponential no. 4.34665576869374564e208 in decimal no. JohnMcG 2009-12-22T14:09:34Z 2009-12-22T14:09:34Z And when we're through with that, do you have some other chores for us? http://stackoverflow.com/questions/1923664/simulating-low-memory-using-c Comment by JohnMcG on Simulating low memory using C++ JohnMcG 2009-12-17T19:27:55Z 2009-12-17T19:27:55Z Preferably pointers to huge blocks of allocated memory... http://stackoverflow.com/questions/1663094/what-are-the-differences-between-using-array-offsets-vs-pointer-incrementation/1663164#1663164 Comment by JohnMcG on What are the differences between using array offsets vs pointer incrementation? JohnMcG 2009-11-02T19:28:24Z 2009-11-02T19:28:24Z I would fail a candidate (well maybe not fail, but discount) for going with the pointer offset for valuing microoptimization over clarity. http://stackoverflow.com/questions/1557352/how-do-i-escape-the-constiterator-trap-when-passing-a-const-container-reference/1557504#1557504 Comment by JohnMcG on How do I escape the const_iterator trap when passing a const container reference as a parameter JohnMcG 2009-10-13T03:05:02Z 2009-10-13T03:05:02Z Thinking about it some more, I think the Meyers example was a public method returning a reference to a private variable. http://stackoverflow.com/questions/1557352/how-do-i-escape-the-constiterator-trap-when-passing-a-const-container-reference/1557504#1557504 Comment by JohnMcG on How do I escape the const_iterator trap when passing a const container reference as a parameter JohnMcG 2009-10-13T03:02:40Z 2009-10-13T03:02:40Z You're right -- I seem to remember a Meyers example similar to this. I'll check it out and edit. http://stackoverflow.com/questions/1375854/if-i-store-a-member-as-an-object-will-i-incur-an-object-copy-during-constuction/1376148#1376148 Comment by JohnMcG on If I store a member as an object, will I incur an object copy during constuction? JohnMcG 2009-09-15T20:30:46Z 2009-09-15T20:30:46Z 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. http://stackoverflow.com/questions/1272570/how-to-find-and-replace-all-old-c-style-data-type-casts-in-my-c-source-code/1293690#1293690 Comment by JohnMcG on How to find (and replace) all old C-style data type casts in my C++ source code? JohnMcG 2009-08-18T20:20:32Z 2009-08-18T20:20:32Z This very problem, where the user can't find the casts in his code, is one reason to favor the C++ style casts. http://stackoverflow.com/questions/1193134/is-downcasting-this-during-construction-safe Comment by JohnMcG on Is downcasting this during construction safe? JohnMcG 2009-07-28T13:42:58Z 2009-07-28T13:42:58Z This raises the question of what value class D is adding, if B is <i>always</i> a D. http://stackoverflow.com/questions/1142643/how-do-use-a-stdautoptr-in-a-class-you-have-to-copy-construct/1144021#1144021 Comment by JohnMcG on How do use a std::auto_ptr in a class you have to copy construct? JohnMcG 2009-07-17T18:13:32Z 2009-07-17T18:13:32Z 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. http://stackoverflow.com/questions/1142643/how-do-use-a-stdautoptr-in-a-class-you-have-to-copy-construct/1144021#1144021 Comment by JohnMcG on How do use a std::auto_ptr in a class you have to copy construct? JohnMcG 2009-07-17T18:00:02Z 2009-07-17T18:00:02Z Sure you can use them; you just have to override the implcit copy constructor and assignment operator. http://stackoverflow.com/questions/1057221/what-are-practical-uses-of-a-protected-constructor/1057245#1057245 Comment by JohnMcG on What are practical uses of a protected constructor? JohnMcG 2009-06-29T13:58:09Z 2009-06-29T13:58:09Z 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 &quot;belt and suspenders&quot; protection, and to make it clear to clients they cannot directly instantiate an object of the class. http://stackoverflow.com/questions/981714/self-initialization-question/981756#981756 Comment by JohnMcG on Self-initialization question JohnMcG 2009-06-11T19:38:07Z 2009-06-11T19:38:07Z Martin's point is that checking for self-assignment in the assignment operator may be necessary to prevent something like this, but it is not sufficient. Because it is possible for assignment to be optimized into the copy constructor, the copy constructor also needs to be accounted for. http://stackoverflow.com/questions/981714/self-initialization-question/981738#981738 Comment by JohnMcG on Self-initialization question JohnMcG 2009-06-11T15:36:40Z 2009-06-11T15:36:40Z It really can't be a compile-time error. Here are the two conditions triggering the problem: * Your copy constructor de-references a pointer from the source object. * You are initializing an object with itself. These two problems could be in completely different compilation units, and the compiler would need to see both conditions to flag an error. Each condition is not a problem in itself, so there's no reason for the compiler to complain. http://stackoverflow.com/questions/915172/c-templates-coding-error-or-compiler-bug/915225#915225 Comment by JohnMcG on C++ Templates: Coding error or compiler bug? JohnMcG 2009-05-27T13:32:20Z 2009-05-27T13:32:20Z That doesn't mean you hand them a gun. http://stackoverflow.com/questions/809334/making-a-point-class-in-c Comment by JohnMcG on Making a Point class in c++ JohnMcG 2009-05-07T20:03:24Z 2009-05-07T20:03:24Z Didn't think you would; just thought it would be helpful to provide the reason why.