Simple C++ function -- Is this code "good"? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T11:36:17Zhttp://stackoverflow.com/feeds/question/213027http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good6Simple C++ function -- Is this code "good"?moo2008-10-17T17:20:00Z2008-11-02T02:20:01Z
<p>The following code was produced by a consultant working for my group. I'm not a C++ developer (worked in many languages, though) but would like some independent opinions on the following code. This is in Visual Studio C++ 6.0. I've got a gut reaction (not a good one, obviously), but I'd like some "gut reactions" from seasoned (or even not so unseasoned) C++ developers out there. Thanks in advance!</p>
<pre><code>// Example call
strColHeader = insert_escape(strColHeader, ',', '\\'); //Get rid of the commas and make it an escape character
</code></pre>
<p>...snip...</p>
<pre><code>CString insert_escape ( CString originalString, char charFind, char charInsert ) {
bool continueLoop = true;
int currentInd = 0;
do {
int occurenceInd = originalString.Find(charFind, currentInd);
if(occurenceInd>0) {
originalString.Insert(occurenceInd, charInsert);
currentInd = occurenceInd + 2;
}
else {
continueLoop = false;
}
} while(continueLoop);
return(originalString);
}
</code></pre>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213040#2130403Answer by Nick for Simple C++ function -- Is this code "good"?Nick2008-10-17T17:23:37Z2008-10-17T17:57:35Z<p>CString has a Replace() method... (that was my 1st reaction)</p>
<p>I have seen a lot of bad code, and lots worse than this. However, not using built-in functionality when there's no apparent good reason not to is... poor.</p>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213041#21304117Answer by gbjbaanb for Simple C++ function -- Is this code "good"?gbjbaanb2008-10-17T17:24:11Z2008-10-17T17:29:44Z<p>hmm. I think </p>
<pre><code>CString strColHeader;
strColHeader.Replace(",", "\\,")
</code></pre>
<p>would do just as well.</p>
<p>I don't like the code, I tend to break from the while loop instead of having an unnecessary bool 'continue' flag. That goes double when he could have used <code>while (occurenceInd != 0)</code> as his loop control variable instead of the boolean.</p>
<p>Incrementing the counter also relies on "+2" which doesn't seem immediately understandable (not at a quick glance), and lastly (and most importantly) he doesn't seem to do comments.</p>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213080#2130800Answer by SauceMaster for Simple C++ function -- Is this code "good"?SauceMaster2008-10-17T17:34:23Z2008-10-17T17:34:23Z<p>The Code written will indeed work, as it is returning the new string. It's just forcing the extra step of then setting the old string = to the returned string.</p>
<p>Like others have said, built-in functionality on strings is more efficient and less error-prone than re-inventing the wheel.</p>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213094#2130940Answer by Paul Nathan for Simple C++ function -- Is this code "good"?Paul Nathan2008-10-17T17:37:16Z2008-10-17T17:37:16Z<p>Looks alright, if a bit, I dunno, hack. Better to use the library, but I wouldn't go and rewrite this routine.</p>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213244#2132440Answer by Konrad Rudolph for Simple C++ function -- Is this code "good"?Konrad Rudolph2008-10-17T18:17:34Z2008-10-17T18:26:23Z<blockquote>
<p>This is in Visual Studio C++ 6.0.</p>
</blockquote>
<p>Gut reaction: <em>blech</em>. Seriously! The C++ compiler shipped with VC++ 6 is known to be buggy and generally performing very badly and it's 10 years old.</p>
<p>@Downvoters: consider it! I mean this in all seriousness. VC6 is just comparatively unproductive and <em>should not be used any more</em>! Especially since Microsoft discontinued its support for the software. There are cases where this can't be avoided but they are rare. In most cases, an upgrade of the code base saves money. VC++ 6 just doesn't allow to harness the potential of C++ which makes an objectively inferior tool.</p>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213248#2132480Answer by Ed Altorfer for Simple C++ function -- Is this code "good"?Ed Altorfer2008-10-17T18:18:47Z2008-10-17T18:18:47Z<p>Looks like people have tackled some of the functionality aspects of this code for you, but I'd suggest staying away from variable naming like you've employed here. </p>
<p>With the exception of UI controls, it is generally frowned upon to use Hungarian notation. This is more important with numbers...for example:</p>
<p>I declare:</p>
<p>float fMyNumber = 0.00;</p>
<p>And then I use that in my entire application. But then, later, I change that to a double because I realize that I need more precision. Now I have:</p>
<p>double fMyNumber = 0.00;</p>
<p>It's true that most good refactoring tools could fix this for you, but it's probably best not to attach those prefixes. They are more common in some languages than others, but from a general style perspective, you should try to avoid them. Unless you're using Notepad, you probably have something akin to Intellisense, so you don't really need to look at the variable name to figure out what type it is.</p>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213255#2132550Answer by Phil Hannent for Simple C++ function -- Is this code "good"?Phil Hannent2008-10-17T18:20:33Z2008-10-17T18:20:33Z<p>There is always a better implementation. If you are using the function as an example of the consultant not being very good you might also want to consider that while they did not know a function that already existed they might have experience and understanding of project construction. </p>
<p>Software development is not just about the perfect function but also how good the architecture of the whole thing is.</p>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213258#2132582Answer by JohnMcG for Simple C++ function -- Is this code "good"?JohnMcG2008-10-17T18:21:07Z2008-10-17T18:21:07Z<p>If you're wanting an evaluation of this developer's C++ skill level, I'd say this demonstrates the lower end of intermediate.</p>
<p>The code gets the job done, and doesn't contain any obvious "howlers," but as others have written, there are better ways of doing this.</p>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213362#2133620Answer by Jackson for Simple C++ function -- Is this code "good"?Jackson2008-10-17T18:46:25Z2008-10-17T18:46:25Z<p>I always worry when I see a do .. while loop; IMO they're always harder to understand.</p>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213398#21339811Answer by Eclipse for Simple C++ function -- Is this code "good"?Eclipse2008-10-17T18:51:50Z2008-10-19T20:57:48Z<p>There's an off-by-one bug sitting there right in the middle:
Take a look at what happens if the first character is a comma: ",abc,def,ghi": I'm assuming the desired output would be "\,abc\,def\,ghi", but instead you get the original string back:</p>
<pre><code>int occurenceInd = originalString.Find(charFind, currentInd);
</code></pre>
<p>OccurrenceInd returns 0, since it found charFind at the first character.</p>
<pre><code>if(occurenceInd>0)
</code></pre>
<p>0 isn't greater than 0, so take the else branch and return the original string. <a href="http://msdn.microsoft.com/en-us/library/aa314323(VS.60).aspx" rel="nofollow">CString::Find</a> returns -1 when it can't find something, so at the very least that comparison should be:</p>
<pre><code>if(occurrenceInd >= 0)
</code></pre>
<p>The best way would be to use the Replace function, but if you want to do it by hand, a better implementation would probably look something like this:</p>
<pre><code>CString insert_escape ( const CString &originalString, char charFind, char charInsert ) {
std::string escaped;
// Reserve enough space for each character to be escaped
escaped.reserve(originalString.GetLength() * 2);
for (int iOriginal = 0; iOriginal < originalString.GetLength(); ++iOriginal) {
if (originalString[iOriginal] == charFind)
escaped += charInsert;
escaped += originalString[iOriginal];
}
return CString(escaped.c_str());
}
</code></pre>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213526#2135263Answer by Ates Goral for Simple C++ function -- Is this code "good"?Ates Goral2008-10-17T19:24:22Z2008-10-17T19:24:22Z<p>My gut reaction is: <strong>WTF</strong>. Initially by how the code is formatted (there are lots of things I don't like about the formatting) and then by examination of what the code is actually doing.</p>
<p>There's a serious issue with this developer's understanding of object copying in C++. The example is a WTF in itself (if the developer of the function really used his/her own function like this):</p>
<pre><code>// Example call
strColHeader = insert_escape(strColHeader, ',', '\\'); //Get rid of the commas and make it an escape character
CString insert_escape ( CString originalString, char charFind, char charInsert )
</code></pre>
<ol>
<li>Pass a <strong>copy</strong> of <code>strColHeader</code> as <code>originalString</code> (notice that there's no <code>&</code>)</li>
<li>The function modified this copy (fine)</li>
<li>The function returns a <strong>copy</strong> of the copy, which in turn <strong>replaces</strong> the original <code>strColHeader</code>. The compiler will probably optimize this out to a single copy but still, passing around object copies like this doesn't work for C++. One should know about references.</li>
</ol>
<p>A more seasoned developer would have designed this function as:</p>
<pre><code>void insert_escape(CString &originalString, char charFind, char charInsert)
</code></pre>
<p>or:</p>
<pre><code>CString insert_escape(const CString &originalString, char charFind, char charInsert)
</code></pre>
<p>(And probably would have named the parameters a bit differently)</p>
<p>And as many have pointed out, the sane thing the developer could have done was to check the API documentation to see if <code>CString</code> already had a <code>Replace</code> method...</p>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213658#2136585Answer by Sol for Simple C++ function -- Is this code "good"?Sol2008-10-17T20:06:38Z2008-10-17T20:06:38Z<p>The mistakes have already been mentioned. But they strike me as the sort of problems anyone might have with quickly dashed-off code which has not been properly tested, particularly if they are not familiar with CString.</p>
<p>I'd worry more about the stylistic things, as they suggest someone who is not comfortable with C++. The use of the bool continueLoop is just plain poor C++. It represents a third of the function's code that could be eliminated by the use of a simple if...break construct, making the code easier to follow in the process.</p>
<p>Also, the variable name "originalString" is very misleading. Because they pass it by value, it's not the original string, it's a copy of it! Then they modify the string anyway, so it no longer is the same object or the same string of text as the original. This double lie suggests muddled thought patterns.</p>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/217169#2171692Answer by paercebal for Simple C++ function -- Is this code "good"?paercebal2008-10-19T23:36:45Z2008-10-19T23:36:45Z<p>I won't provide an alternative code, as it would only add to the code already provided.</p>
<p>But, my gut feeling is that there's something wrong with the code.</p>
<p>To prove it, I will enumerate some points in the original function that shows its developer was not an experienced C++ developer, points that you should investigate if you need a clean implementation:</p>
<ul>
<li><strong>copy</strong> : parameters are passed as copy instead of const-reference. This is a big NO NO in C++ when considering objects.</li>
<li><strong>bug</strong> I guess there is an error in the "if(occurenceInd>0)" part. By reading CString's doc on MSDN, the CString::Find method returns -1, and not 0 when the find failed. This code tells me if a comma was the first character, it would not be escaped, which is probably not the point of the function</li>
<li><strong>unneeded variable</strong> : "continueLoop" is not needed. Replacing the code "continueLoop = false" by "continue" and the line "while(continueLoop)" by "while(true)" is enough. Note that, continuing this reasoning enable the coder to change the functions internal (replacing a do...while by a simple while)</li>
<li><strong>changing return type</strong> : Probably picking at details, but I would offer an alternative function which, instead of returning the result string, would accept is as a reference (one less copy on return), the original function being inlined and calling the alternative.</li>
<li><strong>adding const whenever possible</strong> again, picking at detail: the two "char" parameters should be const, if only to avoid modifying them by accident.</li>
<li><strong>possible multiple reallocation</strong> the function relies on potential multiple reallocations of the CString data. Josh's solution of using std::string's reserve is a good one.</li>
<li><strong>using fully CString API</strong> : But unlike Josh, because you seem to use CString, I would avoid the std::string and use CString::GetBufferSetLength and CString::ReleaseBuffer, which enable me to have the same code, with one less object allocation.</li>
<li><strong>Mysterious Insert method?</strong> it's me, or there is no CString::Insert ??? (see <a href="http://msdn.microsoft.com/en-us/library/aa252634(VS.60).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa252634(VS.60).aspx</a>). In fact, I even failed to find CString in the same MSDN for Visual C++ 2008 and 2005... This could be because I should <em>really</em> go to sleep, but still, I guess this is worth investigating</li>
</ul>
http://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/256410#2564101Answer by Adam Liss for Simple C++ function -- Is this code "good"?Adam Liss2008-11-02T02:20:01Z2008-11-02T02:20:01Z<p>Is this consultant being paid by the line of code? Several folks have pointed out that the <code>CString</code> class already provides this functionality, so even if you're not a programmer, you know:</p>
<ul>
<li>The function is unnecessary. It adds to the complexity, size, and possibly the execution time of the program.</li>
<li>The <code>CString</code> function probably works and is probably efficient; this one may or may not be.</li>
<li>The <code>CString</code> function is documented, and is therefore supportable.</li>
<li>The consultant is either unfamiliar with the standard <code>CString</code> function or thought he/she could do better by writing a new one.
<ul>
<li>One might conclude that the consultant is unfamiliar with other standard features and best practices.</li>
<li>Choosing to write new code for a basic feature, without considering that a standard version may exist, is an accepted bad practice.</li>
</ul></li>
</ul>
<p>And perhaps the biggest, reddest flag of all: your instincts prodded you to get opinions from the StackOverflow community.</p>
<p>Trust your instincts.</p>