User Steve Fallows - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T03:40:36Zhttp://stackoverflow.com/feeds/user/18882http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1869439/header-inclusion-optimization/1869644#18696442Answer by Steve Fallows for Header inclusion optimizationSteve Fallows2009-12-08T20:33:37Z2009-12-08T20:33:37Z<p><a href="http://www.gimpel.com/" rel="nofollow">PC-Lint</a> will report unused include files.</p>
http://stackoverflow.com/questions/1852556/casting-a-pointer-to-a-sub-class-c/1852583#18525830Answer by Steve Fallows for Casting a pointer to a sub-class (C++)Steve Fallows2009-12-05T16:10:41Z2009-12-05T16:10:41Z<p>You haven't given much code to go on, but I think your first line should be:</p>
<pre><code>ThreeDCubePlayer* cubePlayer = (ThreeDCubePlayer *) m_ppDisplayableObjects[0]);
</code></pre>
<p>We'd need to see the declaration of GetMapX() to know about the second line.</p>
http://stackoverflow.com/questions/446866/boostmultiarray-performance-question7Boost::multi_array performance questionSteve Fallows2009-01-15T14:12:05Z2009-12-01T15:20:10Z
<p>I am trying to compare the performance of boost::multi_array to native dynamically allocated arrays, with the following test program:</p>
<pre><code>#include <windows.h>
#define _SCL_SECURE_NO_WARNINGS
#define BOOST_DISABLE_ASSERTS
#include <boost/multi_array.hpp>
int main(int argc, char* argv[])
{
const int X_SIZE = 200;
const int Y_SIZE = 200;
const int ITERATIONS = 500;
unsigned int startTime = 0;
unsigned int endTime = 0;
// Create the boost array
typedef boost::multi_array<double, 2> ImageArrayType;
ImageArrayType boostMatrix(boost::extents[X_SIZE][Y_SIZE]);
// Create the native array
double *nativeMatrix = new double [X_SIZE * Y_SIZE];
//------------------Measure boost----------------------------------------------
startTime = ::GetTickCount();
for (int i = 0; i < ITERATIONS; ++i)
{
for (int y = 0; y < Y_SIZE; ++y)
{
for (int x = 0; x < X_SIZE; ++x)
{
boostMatrix[x][y] = 2.345;
}
}
}
endTime = ::GetTickCount();
printf("[Boost] Elapsed time: %6.3f seconds\n", (endTime - startTime) / 1000.0);
//------------------Measure native-----------------------------------------------
startTime = ::GetTickCount();
for (int i = 0; i < ITERATIONS; ++i)
{
for (int y = 0; y < Y_SIZE; ++y)
{
for (int x = 0; x < X_SIZE; ++x)
{
nativeMatrix[x + (y * X_SIZE)] = 2.345;
}
}
}
endTime = ::GetTickCount();
printf("[Native]Elapsed time: %6.3f seconds\n", (endTime - startTime) / 1000.0);
return 0;
}
</code></pre>
<p>I get the following results:</p>
<pre><code>[Boost] Elapsed time: 12.500 seconds
[Native]Elapsed time: 0.062 seconds
</code></pre>
<p>I can't believe multi_arrays are that much slower. Can anyone spot what I am doing wrong?</p>
<p>I assume caching is not an issue since I am doing writes to memory.</p>
<p>EDIT: This was a debug build. Per Laserallan's suggest I did a release build:</p>
<pre><code>[Boost] Elapsed time: 0.266 seconds
[Native]Elapsed time: 0.016 seconds
</code></pre>
<p>Much closer. But 16 to 1 still seems to high to me.</p>
<p>Well, no definitive answer, but I'm going to move on and leave my real code with native arrays for now.</p>
<p>Accepting Laserallan's answer because it was the biggest flaw in my test.</p>
<p>Thanks to all.</p>
http://stackoverflow.com/questions/1698428/modify-dll-exports-symbol-table-i-want-to-obfuscate-the-function-names/1698699#16986991Answer by Steve Fallows for Modify dll exports (symbol table). I want to obfuscate the function names.Steve Fallows2009-11-09T01:38:37Z2009-11-09T01:38:37Z<p>You might look at <a href="http://www.heaventools.com/overview.htm" rel="nofollow">PE Explorer</a>. I'm not sure it will do what you want, but maybe.</p>
http://stackoverflow.com/questions/1665310/where-is-rvalue-stored-in-c/1665322#16653221Answer by Steve Fallows for where is rvalue stored in c?Steve Fallows2009-11-03T04:53:30Z2009-11-03T04:53:30Z<p>This is compiler dependent. Usually the value (12) will be calculated by the compiler. It is then stored in the code, typically as part of a load/move immediate assembly instruction.</p>
http://stackoverflow.com/questions/1619831/returning-a-pointer-of-a-class-through-its-own-functions/1619929#16199294Answer by Steve Fallows for returning a pointer of a class through it's own functionsSteve Fallows2009-10-25T03:34:00Z2009-10-25T03:34:00Z<p>Another example is the <a href="http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.18" rel="nofollow">Named Parameter Idiom</a>.</p>
http://stackoverflow.com/questions/1441899/cross-compiling-unit-tests-with-cppunit-or-similar/1441975#14419750Answer by Steve Fallows for Cross compiling unit tests with CppUnit or similarSteve Fallows2009-09-18T00:07:45Z2009-09-18T00:07:45Z<p>You might want to look at <a href="http://cxxtest.com" rel="nofollow">CxxTest</a>. I have not used it for cross compilation, but it is based entirely on headers and a Python script - no compiled library. It might be easier to adapt than others.</p>
http://stackoverflow.com/questions/1421668/c-tutorial-for-experienced-c-programmer/1421696#14216964Answer by Steve Fallows for C++ tutorial for experienced C programmer.Steve Fallows2009-09-14T13:55:39Z2009-09-14T13:55:39Z<p>I found <a href="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html" rel="nofollow">Thinking in C++</a> very good when I was going from C to C++.</p>
http://stackoverflow.com/questions/1373686/unable-to-catch-c-exception-using-catch/1373773#13737736Answer by Steve Fallows for Unable to catch c++ exception using catch (...)Steve Fallows2009-09-03T14:33:09Z2009-09-03T14:33:09Z<p>An access violation is not a C++ exception. It's a windows Structured Exception. You'll have to use _set_se_translator() if you want to catch them in catch(...).</p>
<p>You should probably google for all reasons catch(...) is evil and make sure you really want to do this.</p>
http://stackoverflow.com/questions/1280304/why-is-different-regarding-loss-of-data-on-conversion4Why is *= different regarding loss of data on conversion?Steve Fallows2009-08-14T21:24:52Z2009-08-15T02:27:09Z
<p>I have the following example, compiled in VS2005, warning level 4:</p>
<pre><code>int main(int argc, char *argv[])
{
short s = 2;
short t = 3;
t *= s; // warning C4244: '*=' : conversion from 'int' to 'short', possible loss of data
t = t * s;
}
</code></pre>
<p>It doesn't seem to me there should be a warning on either line. </p>
<p>Does *= create an implicit conversion to int for some reason?</p>
<p>EDIT:</p>
<p>Seems like the lack of warning on the second line (and in VS2008) are the <em>real</em> questions.</p>
<p>Thanks for the answers.</p>
http://stackoverflow.com/questions/1048749/what-is-the-difference-between-pointer-and-array-in-the-following-context/1048794#10487940Answer by Steve Fallows for What is the difference between pointer and array in the following context?Steve Fallows2009-06-26T12:09:52Z2009-06-26T12:22:34Z<p>There is no difference. They will both crash since you've not allocated any space for pName. :)[EDIT: No longer a crash - question has been edited]</p>
<p>The main difference is a stylistic one, frequently influenced by which fits the way the surrounding code is written - mostly array access or mostly pointer access.</p>
<p>(EDIT: assuming you really meant &pName[0] as Brian Bondy pointed out.)</p>
http://stackoverflow.com/questions/1029192/when-heapcreate-function-is-used-or-in-what-cases-do-you-need-a-number-of-heaps/1029239#10292390Answer by Steve Fallows for When HeapCreate function is used or in what cases do you need a number of heaps?Steve Fallows2009-06-22T20:29:36Z2009-06-22T20:29:36Z<p>One use is for fixed size objects. If you need to do a lot of allocation/deallocation of objects that are all the same size (i.e. small message buffers) a private heap avoids fragmentation issues.</p>
http://stackoverflow.com/questions/1020020/find-all-references-broken-in-one-solution/1020056#10200564Answer by Steve Fallows for "Find All References" broken in one solutionSteve Fallows2009-06-19T21:17:39Z2009-06-19T21:17:39Z<p>In the old days (VC6 :) ) this type of problem was often fixed by deleting the .ncb file and letting it be rebuilt automatically. Not sure if this is still true in VS2005/8.</p>
http://stackoverflow.com/questions/990906/iphone-error-expected-asm-or-attribute-before-foo/991300#9913001Answer by Steve Fallows for iphone error: expected '=', ',', ';', 'asm' or '__attribute__' before ' 'foo'Steve Fallows2009-06-13T19:09:22Z2009-06-13T19:09:22Z<p>See if this answer helps: <a href="http://stackoverflow.com/questions/990578/expected-asm-or-attribute-before-crendercontext">http://stackoverflow.com/questions/990578/expected-asm-or-attribute-before-crendercontext</a></p>
http://stackoverflow.com/questions/991144/what-exactly-do-pointers-store-c/991176#9911762Answer by Steve Fallows for What exactly do pointers store? (C++)Steve Fallows2009-06-13T17:59:30Z2009-06-13T17:59:30Z<p>As others have said, a pointer stores a memory address which is "just a number' but that is an abstraction. Depending on processor architecture it may be more than one number, for instance a base and offset that must be added to dereference the pointer. In this case the overhead is slightly higher than if the address is a single number.</p>
<p>Yes, there is overhead in accessing an int or a bool via a pointer vs. directly, where the processor can put the variable in a register. Pointers are usually used where the value of the indirection outweighs any overhead, i.e. traversing an array.</p>
<p>I've been referring to time overhead. Not sure if OP was more concerned space or time overhead.</p>
http://stackoverflow.com/questions/971319/resources-for-cross-platform-c-c-development/971496#9714964Answer by Steve Fallows for Resources for cross-platform C/C++ developmentSteve Fallows2009-06-09T17:42:03Z2009-06-09T17:42:03Z<p>Here is one resource that may be of use to you <a href="http://predef.sourceforge.net/index.php" rel="nofollow">Pre-defined C/C++ Compiler Macros</a></p>
http://stackoverflow.com/questions/960218/i-need-a-good-website-to-learn-c/960225#9602256Answer by Steve Fallows for i need a good website to learn c++Steve Fallows2009-06-06T18:08:06Z2009-06-06T18:08:06Z<p>The text of a good book is online here: <a href="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html" rel="nofollow">Thinking in C++</a></p>
http://stackoverflow.com/questions/873745/why-put-a-class-declaration-and-definition-in-two-separate-files-in-c/873760#8737600Answer by Steve Fallows for Why put a class declaration and definition in two separate files in C++?Steve Fallows2009-05-17T02:17:13Z2009-05-17T02:17:13Z<p>Because even within your DLL other classes will use your class. Those files must see the class declaration at compile time, by including the .h. They must not see the definition or there will be multiple definitions of the class functions.</p>
http://stackoverflow.com/questions/839565/how-to-initialise-a-c-program-using-file-environment-and-or-command-line/839979#8399794Answer by Steve Fallows for How to initialise a C program using file, environment and/or command line?Steve Fallows2009-05-08T14:15:07Z2009-05-11T13:03:48Z<p>Eric Raymond covers a lot of this in Section 10 of <a href="http://www.faqs.org/docs/artu/" rel="nofollow">The Art of Unix Programming</a> Obviously this is Unix centric, but most of the principles can be applied in any OS.</p>
http://stackoverflow.com/questions/835171/how-to-send-files-b-w-two-machines-through-socket-programming/835220#8352201Answer by Steve Fallows for How to send files b/w two machines through socket programming?Steve Fallows2009-05-07T15:06:15Z2009-05-07T15:06:15Z<p>One possibility is the TransmitFile() function in the windows API. You'll have to traverse the directories to find individual files with your own code.</p>
http://stackoverflow.com/questions/830463/whats-the-difference-between-global-variables-and-variables-in-main/830481#8304813Answer by Steve Fallows for What's the difference between global variables and variables in main?Steve Fallows2009-05-06T16:27:15Z2009-05-06T16:27:15Z<p>Scope. VarInMain can be accessed directly only by code in main. GlobalVar can be accessed directly by code in any function in the file.</p>
http://stackoverflow.com/questions/827774/refactoring-of-a-large-c-function/827822#8278222Answer by Steve Fallows for Refactoring of a large C++ functionSteve Fallows2009-05-06T02:48:13Z2009-05-06T02:48:13Z<p>The very first step is to develop a good automated regression test if you do not already have one. Then as you pull out each case to a function you can quickly check that you have not broken anything.</p>
http://stackoverflow.com/questions/800368/declaring-a-variable-before-initializing-it-in-c/800416#80041610Answer by Steve Fallows for Declaring a variable before initializing it in c++Steve Fallows2009-04-29T00:35:50Z2009-04-29T02:32:16Z<p>I prefer Greg's answer, but you could also do this:</p>
<pre><code>char *AnimalType;
if( happyDay() )
AnimalType = "puppies";
else
AnimalType = "toads";
Animal a(AnimalType);
</code></pre>
<p>I suggest this because I've worked places where the conditional operator was forbidden. (Sigh!) Also, this can be expanded beyond two alternatives very easily.</p>
http://stackoverflow.com/questions/791101/c-writing-longer-method-or-shorter-method/791112#7911122Answer by Steve Fallows for C#, Writing longer method or shorter method?Steve Fallows2009-04-26T16:16:29Z2009-04-26T16:16:29Z<p>There is no one simple rule about function size. The guideline should be a function should do 'one thing'. That's a little vague but becomes easier with experience. Small functions generally lead to readability. Big ones are occasionally necessary.</p>
<p>Worrying about the overhead of method calls is premature optimization.</p>
http://stackoverflow.com/questions/691014/how-to-allocate-array-in-base-constructor-with-size-based-on-derived-class/691588#6915880Answer by Steve Fallows for How to allocate array in base constructor with size based on derived class?Steve Fallows2009-03-27T21:46:46Z2009-03-27T21:46:46Z<p>I would consider using a std::map. It can grow with base and derived both not caring about the number of parameters the other uses. Key/value pairs are likely easier to manage that numeric indexes, though that is clearly application dependent.</p>
http://stackoverflow.com/questions/302768/why-does-visual-c-not-hit-a-breakpoint-in-or-step-through-a-specific-function1Why does Visual C++ not hit a breakpoint in, or step through a specific function?Steve Fallows2008-11-19T17:51:19Z2009-03-16T11:18:30Z
<p>I have the following:</p>
<pre><code>classA::FuncA()
{
... code
FuncB();
... code
}
classA::FuncB(const char *pText)
{
SelectObject(m_hDC, GetStockObject ( SYSTEM_FONT));
wglUseFontBitmaps(m_hDC, 0, 255, 1000);
glListBase(1000);
glCallLists(static_cast<GLsizei>(strlen(pText)), GL_UNSIGNED_BYTE, pText);
}
</code></pre>
<p>I can hit breakpoints anywhere in FuncA. If I try to step into FuncB, it steps over. It will accept a breakpoint in FuncB, but never hits it. I know it is executing FuncB, because I can put a MessagBox() call in FuncB and get the message box.</p>
<p>I'm new to VS2005 after a few years away from extensive VC6 usage. The one situation like this I recall from my VC6 days, is if symbol information is not available. However, in this case both functions are in the same file, so the symbol information must be correct. Also in that case I think you couldn't even set the breakpoint.</p>
<p>I've tried all the silly voodoo like rebuilding the whole solution.</p>
<p>What stupid thing am I overlooking?</p>
<p>EDIT: Added code for FuncB in response to comment about it possibly being essentially inline-able. (It's just the exact sample code from MSDN for wglUseFontBitmaps [minus comments here]). I don't see how inlining that would impede stepping through each call.</p>
http://stackoverflow.com/questions/622515/was-mel-a-real-programmer/622535#6225358Answer by Steve Fallows for Was 'Mel' a 'real programmer'Steve Fallows2009-03-07T21:22:07Z2009-03-07T21:22:07Z<p>I'm not sure if Mel was a 'real programmer' or not. But in any case, you have to remember the era. Back then those kind of tricks were essential to getting many programs to work, given the limited resources of the systems then. Maybe he went overboard in the situation in the story, but the skills he had were probably required for lots of other cases.</p>
http://stackoverflow.com/questions/548289/what-is-the-type-of-an-enum-whose-values-appear-to-be-strings/548300#5483006Answer by Steve Fallows for What is the type of an enum whose values appear to be strings?Steve Fallows2009-02-14T01:10:47Z2009-02-14T01:17:45Z<p>The single quotes indicate characters, rather than strings in C. So each of the enums will have a 32 bit value consisting of the character codes for the four characters. Actual value will depend in character encodings, but I am assuming 8 bit characters. Note there is <em>no</em> appended \0.</p>
<p>You can use the enums for normal comparison/assignment purposes. As with any enum the underlying type is integer.</p>
<p>I've used this technique in embedded systems many times to create 4 character 'names' that were human readable in hex dump/debugger contexts.</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234098#23409835Answer by Steve Fallows for What is your best programmer joke?Steve Fallows2008-10-24T15:49:45Z2009-02-11T11:43:48Z<p>Q: How many C++ programmers does it take to change a light bulb?</p>
<p>A: You’re still thinking procedurally. A properly designed light bulb object would inherit a change method from a generic light bulb class, so all you would have to do is call the light-bulb-change method.</p>
http://stackoverflow.com/questions/521518/visual-studio-c-debugger-no-hex-dump/521536#5215361Answer by Steve Fallows for Visual Studio C++ Debugger: No hex dump?Steve Fallows2009-02-06T18:26:28Z2009-02-06T18:26:28Z<p>Debug | Windows | Memory will let you look at any area of memory you want (subject to process/access limitations). This is in VS2005. Might be slightly different menu structure in other versions.</p>
http://stackoverflow.com/questions/1910317/unexpected-result-when-adding-to-pointer/1910357#1910357Comment by Steve Fallows on unexpected result when adding to pointerSteve Fallows2009-12-15T21:05:37Z2009-12-15T21:05:37ZHeadaches with 68K??? It was a dream next to the 6809!http://stackoverflow.com/questions/1910317/unexpected-result-when-adding-to-pointer/1910357#1910357Comment by Steve Fallows on unexpected result when adding to pointerSteve Fallows2009-12-15T21:04:54Z2009-12-15T21:04:54Z+1 for the nostalgia factor. I knew the 6809 well, many years ago. Please tell me you're not still using it? :)http://stackoverflow.com/questions/1884229/mapping-enum-values-to-strings-in-c/1884657#1884657Comment by Steve Fallows on Mapping enum values to strings in C++Steve Fallows2009-12-10T23:13:43Z2009-12-10T23:13:43ZIn a previous job we had a fairly thorough system to define all return codes in enums and a Perl script to pull them out and make a compileable file of strings so they could be printed when error occurred. These days I would probably use Python but Perl got the job done.http://stackoverflow.com/questions/1875695/constructor-and-variable-names-in-c-vs-java/1875716#1875716Comment by Steve Fallows on constructor and variable names in c++ vs javaSteve Fallows2009-12-09T18:15:32Z2009-12-09T18:15:32ZLeading "_" is reserved by the standard for use by the compiler implementation. Not a valid choice for this use. I usually see trailing "_" used if not leading "m_".http://stackoverflow.com/questions/1665310/where-is-rvalue-stored-in-c/1665358#1665358Comment by Steve Fallows on where is rvalue stored in c?Steve Fallows2009-11-03T13:37:58Z2009-11-03T13:37:58ZGood example. I was going to say "look at the assembly generated" but I was too lazy to create an example. :) Note also, it can become more complicated if the constant value is larger. Some processors have a limit (e.g. 8 bits or 16 bits) on how large a value can be put directly into an instruction.http://stackoverflow.com/questions/1552170/help-with-error-iso-c-forbids-declaration-of-vector-with-no-type/1552183#1552183Comment by Steve Fallows on Help with error: ISO C++ forbids declaration of 'vector' with no typeSteve Fallows2009-10-12T01:55:53Z2009-10-12T01:55:53ZWell then include this option: using std::vector; I prefer it in the .cpp immediately after the include. Saves tying std:: all over the place <i>and</i> documents why the header was included (which is not always as obvious as in the case of vector).http://stackoverflow.com/questions/1533588/im-a-developer-how-do-i-become-a-technical-manager/1533623#1533623Comment by Steve Fallows on I'm a developer. How do I become a technical manager?Steve Fallows2009-10-07T19:24:06Z2009-10-07T19:24:06ZYou forgot the part about becoming completely clueless. :)http://stackoverflow.com/questions/1433632/is-there-a-findbugs-and-or-pmd-equivalent-for-c-c/1433682#1433682Comment by Steve Fallows on Is there a Findbugs and / or PMD equivalent for C/C++?Steve Fallows2009-09-16T15:25:29Z2009-09-16T15:25:29ZPC-Lint is fairly easy to integrate at least from the error reporting perspective since you can configure the error message format as required by your IDE to find errors automagically.http://stackoverflow.com/questions/1424261/conditional-operator-cant-resolve-overloaded-member-function-pointersComment by Steve Fallows on Conditional operator can't resolve overloaded member function pointersSteve Fallows2009-09-14T22:52:59Z2009-09-14T22:52:59ZYou should indicate what "doesn't work" means. Compiler error? Unexpected runtime behavior?http://stackoverflow.com/questions/1419382/stack-overflow-due-to-heap-allocation-deallocation/1419402#1419402Comment by Steve Fallows on Stack overflow due to heap allocation/deallocation..Steve Fallows2009-09-14T02:08:21Z2009-09-14T02:08:21ZNo, the NULL test is unnecessary.http://stackoverflow.com/questions/1352192/why-dont-more-c-programs-embed-perlComment by Steve Fallows on Why don't more C programs embed Perl?Steve Fallows2009-08-29T19:36:19Z2009-08-29T19:36:19ZBecause C programmers are 'real programmers'. They don't need no steenkin' perl. :)http://stackoverflow.com/questions/1288761/uint16-value-appears-to-be-backwards-when-printing/1288780#1288780Comment by Steve Fallows on UINT16 value appears to be "backwards" when printing.Steve Fallows2009-08-17T16:35:59Z2009-08-17T16:35:59ZFWIW, endianness is not an attribute of the OS but of the hardware processor. x86 family processors are all little endian. OTOH right-thinking processors such as old 68K family are big-endian. :)http://stackoverflow.com/questions/1284940/check-if-numbers-have-the-same-sign/1284956#1284956Comment by Steve Fallows on check if numbers have the same signSteve Fallows2009-08-16T18:31:49Z2009-08-16T18:31:49ZCan you provide a reference for this as a part of the language? I've never heard of it. Is it part of the forthcoming standard?http://stackoverflow.com/questions/1280304/why-is-different-regarding-loss-of-data-on-conversionComment by Steve Fallows on Why is *= different regarding loss of data on conversion?Steve Fallows2009-08-15T01:56:32Z2009-08-15T01:56:32ZThe example is a brand new project. Only /W4 was added.
http://stackoverflow.com/questions/1245840/can-you-guarantee-destructor-order-when-objects-are-declared-on-a-stack/1245857#1245857Comment by Steve Fallows on Can you guarantee destructor order when objects are declared on a stack?Steve Fallows2009-08-07T17:00:58Z2009-08-07T17:00:58ZThe referenced question only discusses order of storage on the stack - not order of destruction.